Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
dleffler committed Aug 11, 2011
2 parents d63f156 + 417d4a5 commit d06b2bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public function manage_unused_tables() {
// eDebug($used_tables);

foreach($tables as $table) {
$basename = str_replace(DB_TABLE_PREFIX.'_', '', $table);
$basename = strtolower(str_replace(DB_TABLE_PREFIX.'_', '', $table));
if (!in_array($basename, $used_tables) && !stristr($basename, 'formbuilder')) {
$unused_tables[$basename]->name = $table;
$unused_tables[$basename]->rows = $db->countObjects($basename);
Expand Down

0 comments on commit d06b2bf

Please sign in to comment.