X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2Fsqlite.inc;h=49f4e00f8e1b118e9756adadf201e2ad7910de32;hb=e8ad2c7e180bf77d300b68607f4b2d1cfc0f67c3;hp=16568ac7154aebc88c425f636bc4213834e1ccfe;hpb=e34865144f3f21bb8b0ad4ba76d3d10490a73462;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/sqlite.inc b/maintenance/sqlite.inc index 16568ac715..49f4e00f8e 100644 --- a/maintenance/sqlite.inc +++ b/maintenance/sqlite.inc @@ -73,7 +73,9 @@ class Sqlite { $tables = $db->query( "SELECT name FROM sqlite_master WHERE type='table'", __METHOD__ ); foreach ( $tables as $table ) { - if ( strpos( $table->name, 'sqlite_' ) === 0 ) continue; + if ( strpos( $table->name, 'sqlite_' ) === 0 ) { + continue; + } $columns = $db->query( "PRAGMA table_info({$table->name})", __METHOD__ ); foreach ( $columns as $col ) { @@ -89,4 +91,4 @@ class Sqlite { $db->close(); return true; } - }; +};