diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-03 16:30:58 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-03 16:30:58 +0000 |
commit | d1d265b45652b0c1d183b9d76cf659a22ea0815a (patch) | |
tree | 61c31649c353786366836c59e2b4ca07304331c4 /views/default/input/button.php | |
parent | f727bccef2f2a8a9dfe1fbbc43e3419e769c7de9 (diff) | |
download | elgg-d1d265b45652b0c1d183b9d76cf659a22ea0815a.tar.gz elgg-d1d265b45652b0c1d183b9d76cf659a22ea0815a.tar.bz2 |
Closes #832: Internal name now handled
git-svn-id: https://code.elgg.org/elgg/trunk@3042 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/input/button.php')
-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 72a1f653d..4b49f09b6 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 $class; ?>" <?php echo $vars['js']; ?> value="<?php echo $value; ?>" src="<?php echo $src; ?>" />
\ No newline at end of file +<input name="<?php echo $vars['internalname']; ?>" type="<?php echo $type; ?>" class="<?php echo $class; ?>" <?php echo $vars['js']; ?> value="<?php echo $value; ?>" src="<?php echo $src; ?>" />
\ No newline at end of file |