aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/includes/acp/acp_styles.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php
index 759ad47dcd..f8f50fcc09 100644
--- a/phpBB/includes/acp/acp_styles.php
+++ b/phpBB/includes/acp/acp_styles.php
@@ -476,12 +476,10 @@ pagination_sep = \'{PAGINATION_SEP}\'
foreach ($style_row as $key => $value)
{
- $src = '';
-
$width = $height = $imgsrc = '';
if (!empty($value))
{
- $values = explode('*',$value);
+ $values = explode('*', $value);
$imgsrc = $values[0];
$height = (!empty($values[1])) ? $values[1] : '';
$width = (!empty($values[2])) ? $values[2] : '';