Skip to content

Commit 13fd4e3

Browse files
authored
Merge pull request #20 from mambax7/master
2.34 RC2
2 parents 64fa916 + 150d3f5 commit 13fd4e3

3 files changed

Lines changed: 16 additions & 8 deletions

File tree

class/TagHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ public function updateByItem($tags, $itemid, $modid = '', $catid = 0)
194194
*/
195195
public function update_stats($tag_id, $modid = 0, $catid = 0)
196196
{
197-
$tag_id = (int)$tag_id;
197+
$tag_id = (int)$tag_id;
198198
$tag_count = [];
199199
if (empty($tag_id)) {
200200
return true;

docs/changelog.txt

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
<h5>2.34 RC-1 [NOT RELEASED]</h5> Dev: Xoops 2.5.9, PHP 7.2.3
1+
<h5>2.34 RC 2 [2019-02-11]</h5> Dev: Xoops 2.5.10, PHP 7.3.2
2+
<hr>
3+
- bug fixes/updates (mamba)
4+
- fixes (aerograf)
5+
- Optimize images (mamba)
6+
- bug fixes (alfredx)
7+
8+
9+
10+
<h5>2.34 RC 1 [NOT RELEASED]</h5> Dev: Xoops 2.5.9, PHP 7.2.3
211
<hr>
312
- update Help (mamba)
413
- Updates for PayPal changes (zyspec)
@@ -8,6 +17,8 @@
817
- changed _handler to Handler (mamba)
918
- reference mismatch (mamba)
1019
- added debug_backtrace (mamba)
20+
- namespaces, autoloading (mamba)
21+
- updates (mage)
1122
- started conversion to XMF (mamba)
1223
&nbsp;&nbsp;- updated addInfoBoxLine entries (mamba)
1324
&nbsp;&nbsp;- displayNavigation(basename(__FILE__)) (mamba)

xoops_version.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@
2727
// ------------------- Informations ------------------- //
2828
$modversion = [
2929
'version' => 2.34,
30-
'module_status' => 'RC-1',
31-
'release_date' => '2018/09/22',
30+
'module_status' => 'RC-2',
31+
'release_date' => '2019/02/11',
3232
'name' => _MI_TAG_NAME,
3333
'description' => _MI_TAG_DESC,
3434
'official' => 0,
3535
//1 indicates official XOOPS module supported by XOOPS Dev Team, 0 means 3rd party supported
3636
'author' => 'Taiwen Jiang <phppp@users.sourceforge.net>',
3737
'author_website_url' => 'https://xoops.org',
3838
'author_website_name' => 'XOOPS',
39-
'credits' => 'XOOPS Development Team, Trabis, Mamba',
39+
'credits' => 'XOOPS Development Team, Trabis, Mamba, Aerograf, Mage, Alfredx',
4040
'license' => 'GPL 2.0 or later',
4141
'license_url' => 'www.gnu.org/licenses/gpl-2.0.html/',
4242
'help' => 'page=help',
@@ -52,9 +52,6 @@
5252
'iconbig' => 'assets/images/iconbig.png',
5353
'dirname' => $moduleDirName,
5454
//Frameworks
55-
// 'dirmoduleadmin' => 'Frameworks/moduleclasses/moduleadmin',
56-
// 'sysicons16' => 'Frameworks/moduleclasses/icons/16',
57-
// 'sysicons32' => 'Frameworks/moduleclasses/icons/32',
5855
// Local path icons
5956
'modicons16' => 'assets/images/icons/16',
6057
'modicons32' => 'assets/images/icons/32',

0 commit comments

Comments
 (0)