diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-12-30 15:40:38 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-12-30 15:40:38 +0000 |
commit | 5d3199ebeeb5a260dfc2ebfa0e57b3584c99faae (patch) | |
tree | 1622f4bf5e1113ea30155599429b44da6e13ccd1 | |
parent | 2b67c2843eb6ce1c9c4d604277122ecf1fffe269 (diff) | |
download | elgg-5d3199ebeeb5a260dfc2ebfa0e57b3584c99faae.tar.gz elgg-5d3199ebeeb5a260dfc2ebfa0e57b3584c99faae.tar.bz2 |
Closes #519: Typo. Well spotted.
git-svn-id: https://code.elgg.org/elgg/trunk@2520 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | views/default/input/button.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/input/button.php b/views/default/input/button.php index dab488719..fadce6075 100644 --- a/views/default/input/button.php +++ b/views/default/input/button.php @@ -38,4 +38,4 @@ if (isset($vars['src'])) $src = $vars['src']; if (strpos($src,$CONFIG->wwwroot)===false) $src = ""; // blank src if trying to access an offsite image. ?> -<input type="<?php echo $type; ?>" class="<?php echo $type; ?>_button" <?php echo $vars['js']; ?> value="<?php echo $value; ?>" src="<?php echo $src; ?>" class="<?php echo $class; ?>" />
\ No newline at end of file +<input type="<?php echo $type; ?>" <?php echo $vars['js']; ?> value="<?php echo $value; ?>" src="<?php echo $src; ?>" />
\ No newline at end of file |