source: extensions/NBC_UserAdvManager/trunk/main.inc.php @ 4340

Last change on this file since 4340 was 4340, checked in by Eric, 14 years ago

[NBC_UserAdvManager]

  • Bug 1259 fixed - PHP notice on user addition by admin in user_list page
  • Bug 1257 fixed - If email exclusion list begins with a CR-LF, an informative warning message is displayed (I was unable to delete automatically this CR-LF).
  • Property svn:eol-style set to LF
File size: 21.3 KB
Line 
1<?php
2/*
3Plugin Name: NBC UserAdvManager
4Version: 2.12.8
5Description: Renforcer les possibilités de gestion des utilisateurs - Enforce users management
6Plugin URI: http://fr.piwigo.org/ext/extension_view.php?eid=216
7Author: Nicco, Eric
8Author URI: http://gallery-nicco.no-ip.org, http://www.infernoweb.net
9*/
10
11/*
12 ***** Plugin history (branch 2.10)*****
13
14-- 2.10.0-beta : Initial beta release for Piwigo compatibility
15-- 2.10.1-beta : Small correction on generated path
16-- 2.10.2-beta : Bug resolved on register validation page
17
18-- 2.10.3 : Final and fully functional release
19                                                Bug resolved on plugin activation
20
21-- 2.10.4 : Bug fixed on profiles update
22
23-- 2.10.5 : Improved code on profiles update
24
25-- 2.10.6 : Old language packs (iso) deleted (forget from PWG 1.7.x version)
26
27-- 2.10.7 : Bug fixed on user's validation email sending
28
29-- 2.10.8 : ConfirmMail page looks better (Sylvia theme only)
30                                                Improved code for checking author on guest comments
31
32-- 2.10.9 : Bug fixed - Missing english translation
33                                                Bug fixed - Notice on forbidden characters function use
34                                                Bug fixed - Audit on forbidden characters in username didn't work
35                                                Adding of email provider exclusion (like *@hotmail.com) - Warning ! -> Known bug : This feature doesn't work on user profile page. So, already registered users can change their email address to a forbiden one.
36
37-- 2.10.9a : Email provider exclusion is no longer case sensitive
38
39-- 2.10.9b : Bug fixed - Home icon wasn't linked to gallery url in ConfirmMail page. If GALLERY_URL is not set, Home icon gets the pwg root path.
40
41-- 2.10.9c : Bug fixed - If Email provider exclusion is set off, new registered user will have a PHP notice on "Undefined variable: ncsemail"
42
43-- 2.10.9d : Code simplification - need no more ""template"" sub-directory in plugin directory for enhance "back link" icon in ConfirMail.tpl
44
45-- 2.10.9e : Compatibility improvement with PHP 5.3 - Some old functions will be deprecated like :
46                                                        ereg replaced by preg_match
47                                                        eregi replace by preg_match with "i" moderator
48                                                        split replace by preg_split
49                               
50-- 2.10.9f : Compatibility bug fixed when used with DynamicRecentPeriod plugin
51
52
53 ***** Plugin history (branch 2.11)*****
54
55-- 2.11.0 : New tabsheet menu to manage ConfirMail functions (setting a timeout without validation, Cleanup expired user's accounts, Force confirmation, Renew validation key, list unvalidated users,...)
56                                                Beautify plugin's main admin panel
57                                               
58-- 2.11.1 : Bug fixed with install and upgrade functions
59                                                Language files correction
60
61-- 2.11.2 : Bug fixed on bad query for unvalidated users display in unvalidated users list
62                                                Bug fixed : Sql syntax error on plugin activation
63
64-- 2.11.3 : On Patricia's request (french forum and bug 1173), the unvalidated users management tab shows users according with the settings of unvalidated group and / or unvalidated status.
65                                                Feature 1172 added : Email providers exclusion list can be set with CR/LF between each entry. The comma seperator (,) is still mandatory.
66                                                Bug 1175 fixed : Bad translation tag in french language file.
67                                                Improvement of unvalidated users management tab (feature 1174)- Expired users are displayed in red color text.
68
69-- 2.11.4 : Bug 1177 fixed : Width of excluded email providers list reset to ancient value (80 col)
70                                                Bug 1179 fixed : Adding a notice in plugin inline documentation for use of validation groups and status. A default group must be set in Piwigo's groups settings and the "Guest" (or another user) must be set as default for status values.
71                                                Bug 1182 fixed : Language tag missing in confirmation email generation
72
73-- 2.11.5 : Bug 1195 fixed : Registration displays the good title
74
75
76 ***** Plugin history (branch 2.12)*****
77
78-- 2.12.0 : Bug 1206 fixed : All plugin functionnalities work in user's profile page
79            Plugin's core code and admin panel refactoring
80            Password control and enforcement : A complexity score is computed on user registration. If this score is less than the goal set by admin, the password choosen is rejected.
81            Feature 1194 "Ghost Tracker" added : New plugin tab displays users who don't comes back to the gallery since x days. Ability to send email reminders and to delete reminded but "dead" users. It's the reason why this feature is called "Ghost Tracker".
82
83-- 2.12.1 : Rollback on admin panel improvement (it was a bad idea)
84
85-- 2.12.2 : Bug 1221 fixed - Adding of a new funtion to populate the lastvisit table on Ghost Tracker activation
86            Bug 1224 fixed - Error in database after plugin activation
87            Bug 1225 fixed - "Reminder" status don't change from "false" to "true" after the sent of a reminder email
88            Some code beautify (SQL requests and HTML 4 strict for tpl)
89
90-- 2.12.3 : Bug 1226 fixed - "duplicate key error" when lastvisit table is not empty and on using Ghost Tracker init function
91
92-- 2.12.4 : Adding a password field control for SendMail2User - Neighborhood plugin compatibility improvement
93            Bug 1229 fixed - Email was no longer mandatory when plugin was active, even if Piwigo's email madatory option was set.
94
95-- 2.12.5 : Bug 1233 fixed -  "duplicate key error" when a user wants to register with an existing username. In fact, all standard Piwigo's register controls didn't work when plugin was activated. That fixes this too.
96            Adding DE, ES and IT languages. All translations are not finalized and could be improved.
97            Adding of description.txt file in language directories.
98
99-- 2.12.6 : Bug 1236 fixed -  Admins was unable to add a new user in the user_list page.
100            Beginning of IT translations
101           
102-- 2.12.7 : Bug 1238 fixed - Simple custom email text wasn't send when Extended Description plugin wasn't set
103            Bug 1245 fixed - Semicolons (;) are no longer allowed in text areas (mail info text, ConfirmMail text, reminder text,...). They'll be replaced by dots (.).
104            Bug 1248 fixed - Php notice on user registration with a forbidden email domain
105            Bug 1250 fixed - Email provider didn't work after the third exclusion in list
106            Escaping all special characters typed in login name and recover them
107
108-- 2.12.8 : Bug 1259 fixed - PHP notice on user addition by admin in user_list page
109            Bug 1257 fixed - If email exclusion list begins with a CR-LF, an informative warning message is displayed (I was unable to delete automatically this CR-LF).
110            Bug 1260
111*/
112
113/*
114
115 ***** TODO List *****
116++ No validation needed for admins users comments (new trigger needed in comments.php ?)
117
118++ No single email check for admins (new trigger needed in functions_user.inc.php ?)
119
120++ Password control and enforcement
121  ?? Can not be the same as username -> Could password score control be sufficient ?
122 
123++ Security : Blocking brut-force attacks !
124              -> Way to do that : Count the number of failed attempts to connect and lock the targetted account after x attempts. Where x will be settable by admin.
125              To unlock the locked account :
126               -> A new table in admin's plugin panel which would display the locked accounts.
127               -> Sending an email to account owner to inform him his account is blocked due to multiple failed connexions attempts. This email could have a link with a security key to unlock the account.
128               -> Both of above solutions ?
129
130++ Opportunity to copy a registered user for new user creation
131  ++ new copied user will (or not) belong to the same groups
132  ++ new copied user will (or not) get the same status (visitor, admin, webmaster, guest (??))
133  ++ new copied user will (or not) get the same properties
134  ++ new copied user will (or not) get the same language
135  ... and so on
136 
137*/
138
139
140if (!defined('PHPWG_ROOT_PATH'))
141{
142  die('Hacking attempt!');
143}
144
145define('NBC_UserAdvManager_DIR' , basename(dirname(__FILE__)));
146define('NBC_UserAdvManager_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/');
147
148include_once (NBC_UserAdvManager_PATH.'include/constants.php');
149include_once (NBC_UserAdvManager_PATH.'include/functions_UserAdvManager.inc.php');
150
151load_language('plugin.lang', NBC_UserAdvManager_PATH);
152
153
154/* Plugin admin */
155add_event_handler('get_admin_plugin_menu_links', 'nbc_UserAdvManager_admin_menu');
156
157function nbc_UserAdvManager_admin_menu($menu)
158{
159  array_push($menu,
160    array(
161      'NAME' => 'UserAdvManager',
162      'URL'  => get_admin_plugin_menu_link(NBC_UserAdvManager_PATH.'/admin/UserAdvManager_admin.php')
163    )
164  );
165
166  return $menu;
167}
168
169
170add_event_handler('loc_begin_index', 'UserAdvManager_GhostTracker');
171
172function UserAdvManager_GhostTracker()
173{
174  global $conf, $user;
175 
176  $conf_nbc_UserAdvManager = isset($conf['nbc_UserAdvManager']) ? explode(";" , $conf['nbc_UserAdvManager']) : array();
177
178  if (isset($conf_nbc_UserAdvManager[17]) and $conf_nbc_UserAdvManager[17] == 'true' and !is_admin() and !is_a_guest())
179  {
180
181    $userid = get_userid($user['username']);
182         
183    /* Looking for existing entry in last visit table */
184    $query = '
185SELECT *
186  FROM '.USER_LASTVISIT_TABLE.'
187WHERE user_id = '.$userid.'
188;';
189       
190    $count = mysql_num_rows(pwg_query($query));
191         
192    if ($count == 0)
193    {
194      /* If not, data are inserted in table */
195      $query = '
196INSERT INTO '.USER_LASTVISIT_TABLE.' (user_id, lastvisit, reminder)
197VALUES ('.$userid.', now(), "false")
198;';
199      pwg_query($query);
200    }
201    else if ($count > 0)
202    {
203      /* If yes, data are updated in table */
204      $query = '
205UPDATE '.USER_LASTVISIT_TABLE.'
206SET lastvisit = now(), reminder = "false"
207WHERE user_id = '.$userid.'
208LIMIT 1
209;';
210      pwg_query($query);
211    }
212  }
213}
214
215
216/* User creation */
217add_event_handler('register_user', 'UserAdvManager_Adduser');
218
219function UserAdvManager_Adduser($register_user)
220{
221  global $conf;
222 
223  $conf_nbc_UserAdvManager = isset($conf['nbc_UserAdvManager']) ? explode(";" , $conf['nbc_UserAdvManager']) : array();
224 
225  /* Sending registration confirmation by email */
226  if ((isset($conf_nbc_UserAdvManager[0]) and $conf_nbc_UserAdvManager[0] == 'true') or (isset($conf_nbc_UserAdvManager[2]) and $conf_nbc_UserAdvManager[2] == 'true'))
227  {
228    $passwd = (isset($_POST['password'])) ? $_POST['password'] : '';
229    SendMail2User(1, $register_user['id'], $register_user['username'], $passwd, $register_user['email'], true);
230  }
231}
232
233
234
235/* User deletion */
236add_event_handler('delete_user', 'UserAdvManager_Deluser');
237
238function UserAdvManager_Deluser($user_id)
239{
240  /* Cleanup for ConfirmMail table */
241  DeleteConfirmMail($user_id);
242  /* Cleanup for LastVisit table */
243  DeleteLastVisit($user_id);
244}
245
246
247/* Check users registration */
248add_event_handler('register_user_check', 'UserAdvManager_RegistrationCheck', EVENT_HANDLER_PRIORITY_NEUTRAL, 2);
249
250function UserAdvManager_RegistrationCheck($err, $user)
251{
252  global $errors, $conf;
253
254/* *********************************************************** */
255/* We need to reset the standard Piwigo's register controls    */
256/* because the call of register_user_check trigger resets them */
257/* *********************************************************** */
258  /* ********************************** */
259  /* Standard Piwigo's username control */
260  /* ********************************** */
261  if ($_POST['login'] == '')
262  {
263    return l10n('reg_err_login1');
264  }
265  if (preg_match('/^.* $/', $_POST['login']))
266  {
267    return l10n('reg_err_login2');
268  }
269  if (preg_match('/^ .*$/', $_POST['login']))
270  {
271    return l10n('reg_err_login3');
272  }
273  if (get_userid($_POST['login']))
274  {
275    return l10n('reg_err_login5');
276  }
277/* ****************************************** */
278/* End of Piwigo's standard register controls */
279/* ****************************************** */
280
281
282/* ****************************************** */
283/* Here begins the advanced register controls */
284/* ****************************************** */
285  $PasswordCheck = 0;
286 
287  $conf_nbc_UserAdvManager = isset($conf['nbc_UserAdvManager']) ? explode(";" , $conf['nbc_UserAdvManager']) : array();
288
289  /* Password enforcement control */
290  if (isset($conf_nbc_UserAdvManager[14]) and $conf_nbc_UserAdvManager[14] == 'true' and !empty($conf_nbc_UserAdvManager[15]))
291  {
292    if (!empty($user['password']) and !is_admin())
293    {
294      $PasswordCheck = testpassword($user['password']);
295 
296      if ($PasswordCheck < $conf_nbc_UserAdvManager[15])
297      {
298        $message = get_l10n_args('reg_err_login4_%s', $PasswordCheck);
299        return($lang['reg_err_pass'] = l10n_args($message).$conf_nbc_UserAdvManager[15]);
300      }
301    }
302    else if (!empty($user['password']) and is_admin() and isset($conf_nbc_UserAdvManager[16]) and $conf_nbc_UserAdvManager[16] == 'true')
303    { 
304      $PasswordCheck = testpassword($user['password']);
305 
306      if ($PasswordCheck < $conf_nbc_UserAdvManager[15])
307      {
308        $message = get_l10n_args('reg_err_login4_%s', $PasswordCheck);
309        return($lang['reg_err_pass'] = l10n_args($message).$conf_nbc_UserAdvManager[15]);
310      }
311    }
312  }
313
314  /* Username non case sensitive */
315  if (isset($conf_nbc_UserAdvManager[1]) and $conf_nbc_UserAdvManager[1] == 'true')
316  {
317    $new_username =  NotSensibleSearchUsername($_POST['login']);
318    $_POST['login'] = $new_username == '' ? $_POST['login'] : $new_username;
319  }
320
321  /* Username without forbidden keys */
322  if (isset($conf_nbc_UserAdvManager[7]) and $conf_nbc_UserAdvManager[7] == 'true' and !empty($_POST['login']) and !ValidateUsername($_POST['login']))
323  {
324    $_POST['login'] = '';
325    return($lang['reg_err_login1'] = l10n('reg_err_login6')."'".$conf_nbc_UserAdvManager[8]."'");
326  }
327
328  /* Email without forbidden domains */
329  /* This doesn't work */
330//  if (isset($conf_nbc_UserAdvManager[12]) and $conf_nbc_UserAdvManager[12] == 'true' and !empty($_POST['mail_address']) and !ValidateEmailProvider($_POST['mail_address']))
331//  {
332//    $_POST['mail_address'] = '';
333//    return($lang['reg_err_login1'] = l10n('reg_err_login7')."'".$conf_nbc_UserAdvManager[13]."'");
334//  }
335  /* This work with a code copy of ValidateEmailProvider() function */
336  if (isset($conf_nbc_UserAdvManager[12]) and $conf_nbc_UserAdvManager[12] == 'true' and !empty($_POST['mail_address']))
337  {
338    $ncsemail = strtolower($_POST['mail_address']);
339    $conf_nbc_MailExclusion = preg_split("/[\s,]+/",$conf_nbc_UserAdvManager[13]);
340    for ($i = 0 ; $i < count($conf_nbc_MailExclusion) ; $i++)
341    {
342      $pattern = '/'.$conf_nbc_MailExclusion[$i].'/';
343      if (preg_match($pattern, $ncsemail))
344      {
345        $_POST['mail_address'] = '';                             
346        return($lang['reg_err_login1'] = l10n('reg_err_login7')."'".$conf_nbc_UserAdvManager[13]."'");
347      }
348    }
349        } 
350}
351
352
353if (script_basename() == 'profile')
354{
355  add_event_handler('loc_begin_profile', 'UserAdvManager_Profile_Init');
356
357  function UserAdvManager_Profile_Init()
358  {
359    global $conf, $user, $template;
360
361    $conf_nbc_UserAdvManager = isset($conf['nbc_UserAdvManager']) ? explode(";" , $conf['nbc_UserAdvManager']) : array();
362
363    if (isset($_POST['validate']))
364    {
365      /* Email without forbidden domains */
366      /* This doesn't work */
367//      if (isset($conf_nbc_UserAdvManager[12]) and $conf_nbc_UserAdvManager[12] == 'true' and !empty($_POST['mail_address']))
368//      {
369//        if (!ValidateEmailProvider($_POST['mail_address']))
370//        {
371//          $template->append('errors', l10n('reg_err_login7')."'".$conf_nbc_UserAdvManager[13]."'");
372//          unset($_POST['validate']);
373//        }
374//      }
375        /* This work with a code copy of ValidateEmailProvider() function */
376        if (isset($conf_nbc_UserAdvManager[12]) and $conf_nbc_UserAdvManager[12] == 'true' and !empty($_POST['mail_address']))
377        {
378          $ncsemail = strtolower($_POST['mail_address']);
379          $conf_nbc_MailExclusion = preg_split("/[\s,]+/",$conf_nbc_UserAdvManager[13]);
380          for ($i = 0 ; $i < count($conf_nbc_MailExclusion) ; $i++)
381          {
382            $pattern = '/'.$conf_nbc_MailExclusion[$i].'/';
383            if (preg_match($pattern, $ncsemail))
384            {                           
385              $template->append('errors', l10n('reg_err_login7')."'".$conf_nbc_UserAdvManager[13]."'");
386              unset($_POST['validate']);
387            }
388          }
389        }
390
391      $typemail = 3;
392     
393      if (!empty($_POST['use_new_pwd']))
394      {
395        $typemail = 2;
396       
397        /* Password enforcement control */
398        if (isset($conf_nbc_UserAdvManager[14]) and $conf_nbc_UserAdvManager[14] == 'true' and !empty($conf_nbc_UserAdvManager[15]))
399        {
400          $PasswordCheck = testpassword($_POST['use_new_pwd']);
401         
402          if ($PasswordCheck < $conf_nbc_UserAdvManager[15])
403          {
404            $message = get_l10n_args('reg_err_login4_%s', $PasswordCheck);
405            $template->append('errors', l10n_args($message).$conf_nbc_UserAdvManager[15]);
406            unset($_POST['use_new_pwd']);
407            unset($_POST['validate']);
408          }
409        }
410      }
411     
412      /* Sending registration confirmation by email */
413      if ((isset($conf_nbc_UserAdvManager[0]) and $conf_nbc_UserAdvManager[0] == 'true') or (isset($conf_nbc_UserAdvManager[2]) and $conf_nbc_UserAdvManager[2] == 'true'))
414      {
415        $confirm_mail_need = false;
416             
417        if (!empty($_POST['mail_address']))
418        {
419          $query = '
420SELECT '.$conf['user_fields']['email'].' AS email
421FROM '.USERS_TABLE.'
422WHERE '.$conf['user_fields']['id'].' = \''.$user['id'].'\'
423;';
424         
425          list($current_email) = mysql_fetch_row(pwg_query($query));
426     
427          if ($_POST['mail_address'] != $current_email and ( isset($conf_nbc_UserAdvManager[2]) and $conf_nbc_UserAdvManager[2] == 'true'))
428       
429            $confirm_mail_need = true;
430        }
431       
432        if ((!empty($_POST['use_new_pwd']) and (isset($conf_nbc_UserAdvManager[0]) and $conf_nbc_UserAdvManager[0] == 'true') or $confirm_mail_need))
433        {
434          $query = '
435SELECT '.$conf['user_fields']['username'].'
436FROM '.USERS_TABLE.'
437WHERE '.$conf['user_fields']['id'].' = \''.$user['id'].'\'
438;';
439       
440          list($username) = mysql_fetch_row(pwg_query($query));
441
442          SendMail2User($typemail, $user['id'], $username, $_POST['use_new_pwd'], $_POST['mail_address'], $confirm_mail_need);
443        }
444      }
445    }
446  }
447}
448
449
450add_event_handler('init', 'UserAdvManager_InitPage');
451 
452function UserAdvManager_InitPage()
453{
454  load_language('plugin.lang', NBC_UserAdvManager_PATH);
455  global $conf, $template, $page, $lang, $errors;
456
457  $conf_nbc_UserAdvManager = isset($conf['nbc_UserAdvManager']) ? explode(";" , $conf['nbc_UserAdvManager']) : array();
458 
459  /* Username non case sensitive */
460  if (isset($conf_nbc_UserAdvManager[1]) and $conf_nbc_UserAdvManager[1] == 'true')
461  {
462    $lang['reg_err_login5'] = l10n('reg_err_login5');
463  }
464 
465
466 
467/* User identification */
468  if (script_basename() == 'identification')
469  {
470    if (isset($_POST['login']))
471    {
472      /* User non case sensitive */
473      if (isset($conf_nbc_UserAdvManager[1]) and $conf_nbc_UserAdvManager[1] == 'true' )
474      {
475        $new_username =  NotSensibleSearchUsername($_POST['username']);
476        $_POST['username'] = $new_username == '' ? $_POST['username'] : $new_username;
477      }
478    }
479  }
480
481
482/* Admin user management */
483  if (script_basename() == 'admin' and isset($_GET['page']) and $_GET['page'] == 'user_list')
484  {
485    if (isset($_POST['submit_add']))
486    {
487      /* User non case sensitive */
488      if (isset($conf_nbc_UserAdvManager[1]) and $conf_nbc_UserAdvManager[1] == 'true' )
489      {
490        $new_username =  NotSensibleSearchUsername($_POST['login']);
491        $_POST['login'] = $new_username == '' ? $_POST['login'] : $new_username;
492      }
493
494      /* Username without forbidden keys */
495      if (isset($conf_nbc_UserAdvManager[7]) and $conf_nbc_UserAdvManager[7] == 'true' and !empty($_POST['login']) and !ValidateUsername($_POST['login']))
496      {
497        $template->append('errors', l10n('reg_err_login6')."'".$conf_nbc_UserAdvManager[8]."'");
498        unset($_POST['submit_add']);
499      }
500
501      /* Email without forbidden domains */
502      /* This doesn't work */
503//      if (isset($conf_nbc_UserAdvManager[12]) and $conf_nbc_UserAdvManager[12] == 'true' and !empty($_POST['email']) and !ValidateEmailProvider($_POST['email']))
504//      {
505//        $template->append('errors', l10n('reg_err_login7')."'".$conf_nbc_UserAdvManager[13]."'");
506//        unset($_POST['submit_add']);
507//      }
508      /* This work with a code copy of ValidateEmailProvider() function */
509      if (isset($conf_nbc_UserAdvManager[12]) and $conf_nbc_UserAdvManager[12] == 'true' and !empty($_POST['email']))
510      {
511        $ncsemail = strtolower($_POST['email']);
512        $conf_nbc_MailExclusion = preg_split("/[\s,]+/",$conf_nbc_UserAdvManager[13]);
513        for ($i = 0 ; $i < count($conf_nbc_MailExclusion) ; $i++)
514        {
515          $pattern = '/'.$conf_nbc_MailExclusion[$i].'/';
516          if (preg_match($pattern, $ncsemail))
517          {                     
518            $template->append('errors', l10n('reg_err_login7')."'".$conf_nbc_UserAdvManager[13]."'");
519            unset($_POST['submit_add']);
520          }
521        }
522      }
523    }
524  }
525}
526
527
528add_event_handler('user_comment_check', 'UserAdvManager_CheckEmptyCommentAuthor', 50, 2);
529
530function UserAdvManager_CheckEmptyCommentAuthor($comment_action, $comm)
531{
532  load_language('plugin.lang', NBC_UserAdvManager_PATH);
533  global $infos, $conf, $template;
534
535  $conf_nbc_UserAdvManager = isset($conf['nbc_UserAdvManager']) ? explode(";" , $conf['nbc_UserAdvManager']) : array();
536
537/* User creation OR update */
538  if (isset($conf_nbc_UserAdvManager[6]) and $conf_nbc_UserAdvManager[6] == 'true' and $conf['comments_forall'] == 'true' and $comm['author'] == 'guest')
539  {
540    $comment_action = 'reject';
541
542    array_push($infos, l10n('UserAdvManager_Empty Author'));
543  }
544
545  return $comment_action;
546}
547
548?>
Note: See TracBrowser for help on using the repository browser.