Skip to content

Commit

Permalink
Fix for topic editor so permissions will be saved.
Browse files Browse the repository at this point in the history
  • Loading branch information
eSilverStrike committed Jan 23, 2017
1 parent 77f9c55 commit cfba0da
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions public_html/admin/topic.php
Expand Up @@ -958,11 +958,11 @@ function handleIconUpload($tid)
$sortnum,
(int) Geeklog\Input::fPost('limitnews'),
(int) Geeklog\Input::fPost('owner_id'),
(int) Geeklog\Input::fPost('group_id'),
(int) Geeklog\Input::post('perm_owner'),
(int) Geeklog\Input::post('perm_group'),
(int) Geeklog\Input::post('perm_members'),
(int) Geeklog\Input::post('perm_anon'),
(int) Geeklog\Input::fPost('group_id'),
Geeklog\Input::post('perm_owner'),
Geeklog\Input::post('perm_group'),
Geeklog\Input::post('perm_members'),
Geeklog\Input::post('perm_anon'),
$is_default, $is_archive
);
} elseif ($mode === 'edit') {
Expand Down

0 comments on commit cfba0da

Please sign in to comment.