diff options
author | plegall <plg@piwigo.org> | 2011-01-13 15:24:18 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-01-13 15:24:18 +0000 |
commit | fe569ab1bf4baa44a808a2d6e81bcddc28d61b62 (patch) | |
tree | d24dd5bb2db62ce6e8c5143412d549469fc33176 /admin/cat_modify.php | |
parent | f03dcee21a4c5ef3b790de15decddff6c6c23b35 (diff) |
feature 2108 added: user upload removed from core. It will come back as a
"new generation" user upload in the Community plugin.
git-svn-id: http://piwigo.org/svn/trunk@8651 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/cat_modify.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/admin/cat_modify.php b/admin/cat_modify.php index a30fea4ba..4c0504428 100644 --- a/admin/cat_modify.php +++ b/admin/cat_modify.php @@ -69,8 +69,6 @@ if (isset($_POST['submit'])) 'id' => $_GET['cat_id'], 'name' => @$_POST['name'], 'commentable' => isset($_POST['commentable'])?$_POST['commentable']:'false', - 'uploadable' => - isset($_POST['uploadable']) ? $_POST['uploadable'] : 'false', 'comment' => $conf['allow_html_descriptions'] ? @$_POST['comment'] : strip_tags(@$_POST['comment']), @@ -245,7 +243,6 @@ $template->assign( 'CAT_STATUS' => $category['status'], 'CAT_VISIBLE' => boolean_to_string($category['visible']), 'CAT_COMMENTABLE' => boolean_to_string($category['commentable']), - 'CAT_UPLOADABLE' => boolean_to_string($category['uploadable']), 'IMG_ORDER_DEFAULT' => empty($category['image_order']) ? 'checked="checked"' : '', @@ -304,10 +301,6 @@ else $category['cat_full_dir'] ) ) ); - if (!url_is_remote($category['cat_full_dir']) ) - { - $template->assign('SHOW_UPLOADABLE', true); - } } // image order management |