diff options
author | chrisaga <chrisaga@piwigo.org> | 2006-06-24 17:10:36 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2006-06-24 17:10:36 +0000 |
commit | 856882fdbb9b9353c6d14f91129c670f837dd6c0 (patch) | |
tree | 04967bc57a009fd6c5c949d9cd4e729a0366acf5 | |
parent | 03a5844cee0c486c8369d225ea1239b2dfad41c1 (diff) |
merge from trunk r1399:1400 into branch 1.6
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1401 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | include/functions.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php index 89bf29c0f..970f80786 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -847,7 +847,7 @@ function get_themeconf($key) { global $themeconf; - return $themeconf[$key]; + return isset($themeconf[$key]) ? $themeconf[$key] : ''; } /** |