diff options
Diffstat (limited to 'mod/thewire')
-rw-r--r-- | mod/thewire/views/default/forms/thewire/add.php | 4 | ||||
-rw-r--r-- | mod/thewire/views/default/widgets/thewire/edit.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mod/thewire/views/default/forms/thewire/add.php b/mod/thewire/views/default/forms/thewire/add.php index 9a72e4109..54d5a5ea7 100644 --- a/mod/thewire/views/default/forms/thewire/add.php +++ b/mod/thewire/views/default/forms/thewire/add.php @@ -14,7 +14,7 @@ if ($post) { if ($post) { echo elgg_view('input/hidden', array( - 'internalname' => 'parent_guid', + 'name' => 'parent_guid', 'value' => $post->guid, )); } @@ -27,7 +27,7 @@ if ($post) { echo elgg_view('input/submit', array( 'value' => $text, - 'internalid' => 'thewire-submit-button', + 'id' => 'thewire-submit-button', )); ?> diff --git a/mod/thewire/views/default/widgets/thewire/edit.php b/mod/thewire/views/default/widgets/thewire/edit.php index 8c93383ad..cee3f769d 100644 --- a/mod/thewire/views/default/widgets/thewire/edit.php +++ b/mod/thewire/views/default/widgets/thewire/edit.php @@ -9,7 +9,7 @@ if (!isset($vars['entity']->num_display)) { } $params = array( - 'internalname' => 'params[num_display]', + 'name' => 'params[num_display]', 'value' => $vars['entity']->num_display, 'options' => array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10), ); |