aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--admin/cat_modify.php10
-rw-r--r--admin/themes/default/template/cat_modify.tpl4
2 files changed, 14 insertions, 0 deletions
diff --git a/admin/cat_modify.php b/admin/cat_modify.php
index a3c34ada5..c2d47fb51 100644
--- a/admin/cat_modify.php
+++ b/admin/cat_modify.php
@@ -132,6 +132,16 @@ if (isset($_POST['submit']))
$data,
array('id' => $data['id'])
);
+ if ($_POST['apply_commentable_on_sub'])
+ {
+ $subcats = get_subcat_ids(array('id' => $data['id']));
+ $query = '
+UPDATE '.CATEGORIES_TABLE.'
+ SET commentable = \''.$data['commentable'].'\'
+ WHERE id IN ('.implode(',', $subcats).')
+;';
+ pwg_query($query);
+ }
// retrieve cat infos before continuing (following updates are expensive)
$cat_info = get_cat_info($_GET['cat_id']);
diff --git a/admin/themes/default/template/cat_modify.tpl b/admin/themes/default/template/cat_modify.tpl
index 52f47d90f..6d46c9ee1 100644
--- a/admin/themes/default/template/cat_modify.tpl
+++ b/admin/themes/default/template/cat_modify.tpl
@@ -125,6 +125,10 @@ categoriesCache.selectize(jQuery('[data-selectize=categories]'), {
<strong>{'Comments'|@translate}</strong>
<br>
{html_radios name='commentable' values=['false','true'] output=['No'|translate,'Yes'|translate] selected=$CAT_COMMENTABLE}
+ <label id="applytoSubAction">
+ <input type="checkbox" name="apply_commentable_on_sub">
+ {'Apply to sub-albums'|@translate}
+ </label>
</p>
{/if}