]> git.mxchange.org Git - friendica.git/commitdiff
Fix Issue #2813
authorHypolite Petovan <ben.lort@gmail.com>
Fri, 30 Sep 2016 03:16:17 +0000 (23:16 -0400)
committerHypolite Petovan <ben.lort@gmail.com>
Fri, 30 Sep 2016 03:17:35 +0000 (23:17 -0400)
- Remove adding a notification for each admin on register approval
request
- Fix wrong display of the above notification that is removed anyway
- Fix comments

js/main.js
mod/register.php

index 72bef8849038894b10b82dad76be4aad8e9617a6..79b5aae2bc05e3bc68e91f551e84e2381e910ce8 100644 (file)
                                        var html = notifications_tpl.format(
                                                e.attr('href'),                     // {0}  // link to the source
                                                e.attr('photo'),                    // {1}  // photo of the contact
-                                               text,                               // {2}  // preformatet text (autor + text)
+                                               text,                               // {2}  // preformatted text (autor + text)
                                                e.attr('date'),                     // {3}  // date of notification (time ago)
-                                               seenclass,                          // {4}  // vistiting status of the notification
-                                               new Date(e.attr('timestamp')*1000), // {5}  //date of notification
+                                               seenclass,                          // {4}  // visited status of the notification
+                                               new Date(e.attr('timestamp')*1000), // {5}  // date of notification
                                                e.attr('url'),                      // {6}  // profile url of the contact
-                                               e.text().format(""),                // {7}  // clean status text
-                                               contact                             // {8}  //preformatat author (name + profile url)
+                                               e.text().format(contact),           // {7}  // preformatted html (text including author profile url)
+                                               ''                                  // {8}  // Deprecated
                                        );
                                        nnm.append(html);
                                });
index 6fc5887ef5c32734d27ad3900c3037cfd82016e2..62b6a5f033353c478fb0bb956e11df28cdd58818 100644 (file)
@@ -132,24 +132,6 @@ function register_post(&$a) {
                        $admin_mail_list
                );
 
-
-               foreach ($adminlist as $admin) {
-                       notification(array(
-                               'type' => NOTIFY_SYSTEM,
-                               'event' => 'SYSTEM_REGISTER_REQUEST',
-                               'source_name' => $user['username'],
-                               'source_mail' => $user['email'],
-                               'source_nick' => $user['nickname'],
-                               'source_link' => $a->get_baseurl()."/admin/users/",
-                               'link' => $a->get_baseurl()."/admin/users/",
-                               'source_photo' => $a->get_baseurl() . "/photo/avatar/".$user['uid'].".jpg",
-                               'to_email' => $admin['email'],
-                               'uid' => $admin['uid'],
-                               'language' => ($admin['language']?$admin['language']:'en'))
-                       );
-               }
-
-
                info( t('Your registration is pending approval by the site owner.') . EOL ) ;
                goaway(z_root());