From f71adf5c9be9acf0b4e9158ed4e1caa3767a3318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 29 May 2012 17:20:06 +0200 Subject: [PATCH] Wrap long line --- libraries/Theme.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/Theme.class.php b/libraries/Theme.class.php index 4a1cb5a0bf..625623bae5 100644 --- a/libraries/Theme.class.php +++ b/libraries/Theme.class.php @@ -326,7 +326,8 @@ class PMA_Theme if (is_readable($this->img_path . $file)) { return $this->img_path . $file; } else { - return $GLOBALS['cfg']['ThemePath'] . '/' . PMA_Theme_Manager::FALLBACK_THEME . '/img/' . $file; + return $GLOBALS['cfg']['ThemePath'] . '/' + . PMA_Theme_Manager::FALLBACK_THEME . '/img/' . $file; } } }