Skip to content

Commit

Permalink
Fixed Topic Editor not saving hidden and inherit flags
Browse files Browse the repository at this point in the history
  • Loading branch information
eSilverStrike committed Jan 22, 2017
1 parent 23d1f93 commit 8ede9c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public_html/admin/topic.php
Expand Up @@ -945,8 +945,8 @@ function handleIconUpload($tid)

$is_default = Geeklog\Input::post('is_default', '');
$is_archive = Geeklog\Input::post('is_archive', '');
$inherit = (int) Geeklog\Input::fPost('inherit', 0);
$hidden = (int) Geeklog\Input::fPost('hidden', 0);
$inherit = Geeklog\Input::post('inherit', '');
$hidden = Geeklog\Input::post('hidden', '');
$parent_id = Geeklog\Input::fPost('parent_id');
$sortnum = (int) Geeklog\Input::fPost('sortnum', 0);
$display .= savetopic(
Expand Down

0 comments on commit 8ede9c2

Please sign in to comment.