diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-05-15 19:38:49 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-05-15 19:38:49 +0000 |
commit | 77897d4efad074d9434a97a67052bc788c315dee (patch) | |
tree | 1bcce8494ca5840393ecf4c849e0efc34e575707 /views/installation/forms/install/template.php | |
parent | b7ea2e2e377568a3730ed46b8df1751cc747323f (diff) | |
download | elgg-77897d4efad074d9434a97a67052bc788c315dee.tar.gz elgg-77897d4efad074d9434a97a67052bc788c315dee.tar.bz2 |
Refs #3453 an implementation of creating the data directory. This capability is turned off due to security concerns.
git-svn-id: http://code.elgg.org/elgg/trunk@9088 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/installation/forms/install/template.php')
-rw-r--r-- | views/installation/forms/install/template.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/installation/forms/install/template.php b/views/installation/forms/install/template.php index ea9a08a3d..385168fe4 100644 --- a/views/installation/forms/install/template.php +++ b/views/installation/forms/install/template.php @@ -15,11 +15,11 @@ foreach ($variables as $field => $params) { $help = elgg_echo("install:$type:help:$field"); $params['name'] = $field; - $form_body .= '<p>'; + $form_body .= '<div>'; $form_body .= "<label>$label</label>"; $form_body .= elgg_view("input/{$params['type']}", $params); $form_body .= "<span class=\"install-help\">$help</span>"; - $form_body .= '</p>'; + $form_body .= '</div>'; } $submit_params = array( |