Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthilinaa <thilinaabeyrathna@gmail.com>2012-08-18 07:15:07 +0400
committerthilinaa <thilinaabeyrathna@gmail.com>2012-08-18 07:15:07 +0400
commite5ba8a55accd4a894dfd6b4f40745e3dea3ec676 (patch)
treec4a3900d8a05225abb4b4c82ee915764c955e277 /db_structure.php
parent51588f39ef0f6bd45e1417bd1b9841ce61b04adb (diff)
missing bracket
Diffstat (limited to 'db_structure.php')
-rw-r--r--db_structure.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_structure.php b/db_structure.php
index e0d7f74b75..309454a83d 100644
--- a/db_structure.php
+++ b/db_structure.php
@@ -140,7 +140,7 @@ $overhead_check = '';
$create_time_all = '';
$update_time_all = '';
$check_time_all = '';
-$checked = !empty($checkall) ? ' checked="checked"' : '';
+$checked = (!empty($checkall) ? ' checked="checked"' : '');
$num_columns = $cfg['PropertiesNumColumns'] > 1
? ceil($num_tables / $cfg['PropertiesNumColumns']) + 1
: 0;