diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-11 19:14:32 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-11 19:14:32 +0000 |
commit | d3334ef71b8e71e0db6c463436555f406941d5c9 (patch) | |
tree | cd4109bcc0d7abf2528cf5940e6c132c3e98b01a /views/default/input/url.php | |
parent | 982d56d370ba021e17a6e8548cdeb26345a89380 (diff) | |
download | elgg-d3334ef71b8e71e0db6c463436555f406941d5c9.tar.gz elgg-d3334ef71b8e71e0db6c463436555f406941d5c9.tar.bz2 |
Implemented sticky forms.
git-svn-id: http://code.elgg.org/elgg/trunk@5368 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/input/url.php')
-rw-r--r-- | views/default/input/url.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/views/default/input/url.php b/views/default/input/url.php index 571754c77..0b9e124c6 100644 --- a/views/default/input/url.php +++ b/views/default/input/url.php @@ -18,6 +18,11 @@ $class = $vars['class']; if (!$class) { $class = "input_url"; } + +if (!isset($vars['value']) || $vars['value'] === FALSE) { + $vars['value'] = elgg_get_sticky_value($vars['internalname']); +} + ?> <input type="text" <?php if ($vars['disabled']) echo ' disabled="yes" '; ?> <?php echo $vars['js']; ?> name="<?php echo $vars['internalname']; ?>" <?php if (isset($vars['internalid'])) echo "id=\"{$vars['internalid']}\""; ?> value="<?php echo htmlentities($vars['value'], ENT_QUOTES, 'UTF-8'); ?>" class="<?php echo $class; ?>"/>
\ No newline at end of file |