diff options
Diffstat (limited to 'view/theme/redbasic/php/style.php')
-rw-r--r-- | view/theme/redbasic/php/style.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 9c133313d..1a2e43e0e 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -306,7 +306,7 @@ if(! $a->install) { // left aside is 231px + converse width -$main_width = (231 + $converse_width); +$main_width = (231 + intval($converse_width)); // prevent main_width smaller than 768px $main_width = (($main_width < 768) ? 768 : $main_width) . 'px'; |