aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/views/default/forms/reportedcontent/add.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/reportedcontent/views/default/forms/reportedcontent/add.php')
-rw-r--r--mod/reportedcontent/views/default/forms/reportedcontent/add.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/reportedcontent/views/default/forms/reportedcontent/add.php b/mod/reportedcontent/views/default/forms/reportedcontent/add.php
index abc53e750..0b1716a35 100644
--- a/mod/reportedcontent/views/default/forms/reportedcontent/add.php
+++ b/mod/reportedcontent/views/default/forms/reportedcontent/add.php
@@ -19,7 +19,7 @@ $owner = elgg_get_logged_in_user_entity();
<?php
echo elgg_echo('reportedcontent:title');
echo elgg_view('input/text', array(
- 'internalname' => 'title',
+ 'name' => 'title',
'value' => $title,
));
?>
@@ -30,7 +30,7 @@ $owner = elgg_get_logged_in_user_entity();
<?php
echo elgg_echo('reportedcontent:address');
echo elgg_view('input/url', array(
- 'internalname' => 'address',
+ 'name' => 'address',
'value' => $address,
));
@@ -43,7 +43,7 @@ $owner = elgg_get_logged_in_user_entity();
</label>
<?php
echo elgg_view('input/longtext',array(
- 'internalname' => 'description',
+ 'name' => 'description',
'value' => $description,
));
?>