Skip to content

Commit

Permalink
fix split bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mambax7 committed Aug 13, 2019
1 parent 1d7d7ff commit 397a7b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion action.post.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
require_once __DIR__ . '/header.php';

$topic_id = Request::getInt('topic_id', 0, 'POST');
$post_id = Request::getArray('post_id', Request::getArray('post_id', [], 'POST'), 'GET');
//$post_id = Request::getArray('post_id', Request::getArray('post_id', [], 'POST'), 'GET');
$post_id = Request::getInt('post_id', Request::getInt('post_id', [], 'POST'), 'GET');
$uid = Request::getInt('uid', 0, 'GET');

$op = Request::getCmd('op', Request::getCmd('op', '', 'POST'), 'GET');
Expand Down
3 changes: 2 additions & 1 deletion docs/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<h5>5.01 Final (XOOPS 2.5.10) [NOT RELEASED]</h5> Dev: Xoops 2.5.10, PHP 7.3.7
<h5>5.01 Beta 1 (XOOPS 2.5.10) [NOT RELEASED]</h5> Dev: Xoops 2.5.10, PHP 7.3.7
<hr>
- Facebook UI Style Rating (xd9527/mamba)
- fix $status (goffy/zyspec)
- fix split bug (bioskop/mamba)

<h5>5.00 Final (XOOPS 2.5.10) [2019-04-30]</h5> Dev: Xoops 2.5.10, PHP 7.3.4
<hr>
Expand Down
2 changes: 1 addition & 1 deletion xoops_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
$modversion = [
'version' => 5.01,
'module_status' => 'Beta 1',
'release_date' => '2019/06/30',
'release_date' => '2019/08/13',
'name' => _MI_NEWBB_NAME,
'description' => _MI_NEWBB_DESC,
'help' => 'page=help',
Expand Down

0 comments on commit 397a7b8

Please sign in to comment.