Ignore:
Timestamp:
Feb 20, 2014 3:03:59 AM (10 years ago)
Author:
anonymous
Message:

Completed integrating /branches/eli_branch into /trunk. Changes include:

  • Removed closing ?> from end of files
  • Upgrade old-style contructor methods to use construct() instead.
  • Class properties and methods defined as public, private, static or protected
  • Ensure code runs under E_ALL with only mysql_* deprecated warnings
  • Search for the '@' symbol anywhere it might be used to supress runtime errors, then replace with proper error recovery.
  • Run the php cli -l option to check files for syntax errors.
  • Bring tests up-to-date with latest version and methods of PHPUnit
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/lib/Utilities.inc.php

    r465 r468  
    950950
    951951    $add_members = '/usr/lib/mailman/bin/add_members';
    952     /// FIXME: checking of executable is disabled.
     952    // FIXME: checking of executable is disabled.
    953953    if (true || is_executable($add_members) && is_readable($add_members)) {
    954954        $welcome_msg = $send_welcome_message ? 'y' : 'n';
     
    982982
    983983    $remove_members = '/usr/lib/mailman/bin/remove_members';
    984     /// FIXME: checking of executable is disabled.
     984    // FIXME: checking of executable is disabled.
    985985    if (true || is_executable($remove_members) && is_readable($remove_members)) {
    986986        $userack = $send_user_ack ? '' : '--nouserack';
     
    11201120    }
    11211121}
    1122 
    1123 ?>
Note: See TracChangeset for help on using the changeset viewer.