diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-03-20 21:27:28 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-03-20 21:27:28 +0000 |
commit | b52a10cf375a85a8c2d0b0e22791ff6e0c6773c1 (patch) | |
tree | db3645027da1bd0183d7439faad79d8db134353b /views/default/tidypics/forms/edit.php | |
parent | e5b3b8b9bdd999c1e4c1ac583417340eacb72269 (diff) | |
download | elgg-b52a10cf375a85a8c2d0b0e22791ff6e0c6773c1.tar.gz elgg-b52a10cf375a85a8c2d0b0e22791ff6e0c6773c1.tar.bz2 |
updated the edit album form to use default permissions and be better formatted
Diffstat (limited to 'views/default/tidypics/forms/edit.php')
-rw-r--r-- | views/default/tidypics/forms/edit.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/views/default/tidypics/forms/edit.php b/views/default/tidypics/forms/edit.php index efe4aa508..97170163b 100644 --- a/views/default/tidypics/forms/edit.php +++ b/views/default/tidypics/forms/edit.php @@ -25,6 +25,10 @@ $tags = "";
$title = "";
$description = "";
+ if (defined('ACCESS_DEFAULT'))
+ $access_id = ACCESS_DEFAULT;
+ else
+ $access_id = 0;
}
// in case we have some cached details
@@ -38,6 +42,7 @@ if (!$container_guid) $container_guid = page_owner();
?>
+<div class="contentWrapper">
<form action="<?php echo $vars['url']; ?>action/<?php echo $action; ?>" method="post">
<p>
<label><?php echo elgg_echo('album:title'); ?></label>
@@ -112,4 +117,5 @@ ?>
<input type="hidden" name="container_guid" value="<?php echo $container_guid; ?>" />
<p><input type="submit" name="submit" value="<?php echo elgg_echo('save'); ?>" /></p>
- </form>
\ No newline at end of file + </form>
+</div>
\ No newline at end of file |