diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-10 20:17:09 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-10 20:17:09 +0000 |
commit | 0a8d5edbdc8e3e251f29b7370fdc2e594b06446f (patch) | |
tree | c32a89c1c0b7f4458d0c6161be5d2a73f396f3ce /modules/gallery_unit_test | |
parent | ddf0a519000f4c93df1f2ded18b631325256a905 (diff) |
Early look at the User/Auth module refactoring. It will look for a driver based on the contents of the user/config/user.php file. And load that driver based on the User_Driver interface. There is a default User_Gallery_Driver class that will provide the actual interface implementation. Replacing this driver will allow a completely different user and authentication implementation to be used... hopefully will reduce issues with embedding and other user management systems. Removed from unit tests so they will still run.
Diffstat (limited to 'modules/gallery_unit_test')
-rw-r--r-- | modules/gallery_unit_test/controllers/test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery_unit_test/controllers/test.php b/modules/gallery_unit_test/controllers/test.php index 203edcba..c50ba5c4 100644 --- a/modules/gallery_unit_test/controllers/test.php +++ b/modules/gallery_unit_test/controllers/test.php @@ -62,13 +62,13 @@ class Test_Controller extends Controller { // this way. Uninstall modules first and core last. Ignore errors during uninstall. try { comment_installer::uninstall(); - user_installer::uninstall(); +// user_installer::uninstall(); core_installer::uninstall(); } catch (Exception $e) { } core_installer::install(); - user_installer::install(); +// user_installer::install(); comment_installer::install(); print new Unit_Test(); |