Skip to content

Commit

Permalink
Always return true on dbInfoLoad() refs #340
Browse files Browse the repository at this point in the history
  • Loading branch information
Drak committed Apr 28, 2012
1 parent a72ba01 commit 0665e5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/util/ModUtil.php
Expand Up @@ -683,7 +683,7 @@ public static function dbInfoLoad($modname, $directory = '', $force = false)
// update the loaded status
$serviceManager['modutil.dbinfoload.loaded'] = $loaded;

return isset($data) ? $data : $loaded[$modname];
return true;//isset($data) ? $data : $loaded[$modname];
}

/**
Expand Down

0 comments on commit 0665e5e

Please sign in to comment.