Skip to content

Commit

Permalink
updating require of overloadbale in model
Browse files Browse the repository at this point in the history
  • Loading branch information
gwoo committed Aug 3, 2009
1 parent d15a961 commit c33437a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions cake/libs/model/model.php
Expand Up @@ -23,12 +23,14 @@
/**
* Included libs
*/
App::import('Core', array(
'ClassRegistry', 'Overloadable', 'Validation', 'Set', 'String'
));
App::import('Core', array('ClassRegistry', 'Validation', 'Set', 'String'));
App::import('Model', 'ModelBehavior', false);
App::import('Model', 'ConnectionManager', false);

if (!class_exists('Overloadable')) {
require LIBS . 'overloadable.php';
}

/**
* Object-relational mapper.
*
Expand Down

0 comments on commit c33437a

Please sign in to comment.