diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-30 04:32:04 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-30 04:32:04 +0000 |
commit | a2b3db924719b111c7c01812fe3470fbbd1ae7cc (patch) | |
tree | 3d4d96a3b91361b177553f9af506ec7f17c14b6b /views/installation | |
parent | 010bc9650139814f2c74a24b6e320c5c4373e5c4 (diff) | |
download | elgg-a2b3db924719b111c7c01812fe3470fbbd1ae7cc.tar.gz elgg-a2b3db924719b111c7c01812fe3470fbbd1ae7cc.tar.bz2 |
Refs #2428 removed more CONFIG uses
git-svn-id: http://code.elgg.org/elgg/trunk@7769 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/installation')
-rw-r--r-- | views/installation/input/button.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/views/installation/input/button.php b/views/installation/input/button.php index 76cf5afa1..6704fa8c5 100644 --- a/views/installation/input/button.php +++ b/views/installation/input/button.php @@ -15,8 +15,6 @@ * */ -global $CONFIG; - $class = $vars['class']; if (!$class) { $class = "elgg-submit-button"; @@ -44,7 +42,7 @@ $value = htmlentities($vars['value'], ENT_QUOTES, 'UTF-8'); $name = $vars['internalname']; $src = $vars['src']; // blank src if trying to access an offsite image. -if (strpos($src,elgg_get_site_url())===false) { +if (strpos($src, elgg_get_site_url()) === false) { $src = ""; } ?> |