Show
Ignore:
Timestamp:
12/01/2007 01:45:20 PM (12 months ago)
Author:
Shadowhand
Message:

Changes to core:

  • Small optimizations and cleanup in Kodoc
  • Small optimizations to User_agent
  • Fixed a typo in config/encryption.php, thanks J. Gordon!
  • Updated ORM::call to pass through calls to the database. This allows calls like: $user->orderby('username', 'desc')->find_all();
  • Renamed ORM::where to ORM::where_key (protected), and changed it's functionality
  • Updated user and role model to handle where_key
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/modules/kodoc/libraries/Kodoc.php

    r1329 r1364  
    520520                if (isset(self::$php_visibility[0])) 
    521521                { 
    522                         self::$php_visibility = array_combine(self::$php_visibility, self::$php_visibility); 
     522                        self::$php_visibility = array_flip(self::$php_visibility); 
    523523                } 
    524524