Show
Ignore:
Timestamp:
09/02/06 23:35:06 (6 years ago)
Author:
max-horvath
Message:

"2006-09-02 Max Horvath <max.horvath@…>

  • Installation script checks for PHP session extension (fixes #139)
  • Removed \"Call-time pass-by-reference has been deprecated\" warnings (fixes #239)
  • Revert changes of FCKeditor implementation (fixes #240)
  • Fix of FCKeditor implementation, now also supports FCKeditor 2.3+ (fixes #145)
  • Hotspots/Nodes? are sorted case-insensitive now (fixes #109)
  • Fix #141
  • templates/sites/index.tpl: fix wrong user count (fixes #236)
  • Added more trash mail services to the black list (fixes #149)"
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/install.php

    r1038 r1088  
    242242        'note' => 'Required for RADIUS support' 
    243243    ), 
     244    'session' => array ( 
     245        'needed' => 1, 
     246        'available' => 0, 
     247        'message' => '<B>session</B> extention is missing', 
     248        'note' => 'Required for core auth-server' 
     249    ), 
    244250    'xmlrpc' => array ( 
    245251        'needed' => 0, 
     
    404410function execVerbose($command, & $output, & $return_var) { 
    405411    print "$command"; 
    406     $retval = exec($command.'  2>&1', & $output, & $return_var);  
     412    $retval = exec($command.'  2>&1', & $output, & $return_var); 
    407413    if ($return_var != 0) { 
    408414        print "<p style='color:red'>Error:</em>  Command did not complete successfully  (returned $return_var): <br/>\n";