Remove remaining empty() call in r79119
[lhc/web/wiklou.git] / includes / db / DatabaseMysql.php
index 5e9c27f..25c360d 100644 (file)
@@ -542,7 +542,7 @@ class DatabaseMysql extends DatabaseBase {
                        $vars = get_object_vars($table);
                        $table = array_pop( $vars );
                        
-                       if( empty( $prefix ) || strpos( $table, $prefix ) === 0 ) {
+                       if( !$prefix || strpos( $table, $prefix ) === 0 ) {
                                $endArray[] = $table;
                        }
                }