summaryrefslogtreecommitdiff
path: root/core/helpers/module.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/helpers/module.php')
-rw-r--r--core/helpers/module.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/helpers/module.php b/core/helpers/module.php
index bc786fad..ca3eb2cc 100644
--- a/core/helpers/module.php
+++ b/core/helpers/module.php
@@ -131,8 +131,6 @@ class module_Core {
* @todo remove this when we have a real installer.
*/
private static function _core_installed() {
- if (Kohana::config('database.default.connection.pass') == 'p@ssw0rd') {
- return array();
- }
+ return Kohana::config('database.default.connection.pass') != 'p@ssw0rd';
}
}