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/node_list.php

    r1031 r1088  
    9191} 
    9292 
     93// Check if ordering should ignore uppper and lower case 
     94if ($sort_by_param == "name" || $sort_by_param == "node_id") { 
     95    $sort_by_param = "lower(" . $sort_by_param . ")"; 
     96} 
     97 
    9398// Sort according to above instructions 
    9499if ($sort_by_using_sql === true)