Skip to content

Commit

Permalink
Fixed issue #8519: Error during upgrade vom 2.00 to 2.05 using Postgr…
Browse files Browse the repository at this point in the history
…eSQL

Dev Also fixed non-appearing inputs for username and password in login mask when using Postgres
  • Loading branch information
c-schmitz committed Jan 17, 2014
1 parent ed198e0 commit cb2bf2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/libraries/PluginManager/PluginManager.php
Expand Up @@ -293,7 +293,7 @@ public function loadPlugins()
{
try {
$pluginModel = Plugin::model();
$records = $pluginModel->findAllByAttributes(array('active'=>1));
$records = $pluginModel->findAllByAttributes(array('active'=>true));

foreach ($records as $record) {
$this->loadPlugin($record->name, $record->id);
Expand Down

0 comments on commit cb2bf2e

Please sign in to comment.