Skip to content

Commit 62d8b0f

Browse files
authored
Merge pull request #17 from ggoffy/master
fixed smarty problems found by wgTestUi
2 parents e788a7d + dead5de commit 62d8b0f

6 files changed

Lines changed: 18 additions & 13 deletions

File tree

docs/changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
==============================================================
2+
1.1.0 RC1 [2023/04/09]: XOOPS 2.5.11 RC1, PHP 7.4.25, PHP 8.0.1
3+
==============================================================
4+
- fixed smarty problems found by wgTestUi (goffy)
5+
16
==============================================================
27
1.0.0 Stable [2021/12/10 10:00:59]
38
==============================================================
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!-- Header -->
2-
<{includeq file='db:wgblocks_admin_header.tpl' }>
2+
<{include file='db:wgblocks_admin_header.tpl' }>
33

44
<!-- About Page -->
55
<div class="top"><{$about|default:false}></div>
66

77
<!-- Footer -->
8-
<{includeq file='db:wgblocks_admin_footer.tpl' }>
8+
<{include file='db:wgblocks_admin_footer.tpl' }>

templates/admin/wgblocks_admin_footer.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="center">
2-
<a href="https://xoops.org/" title="Visit XOOPS" target="_blank"><img src="<{xoModuleIcons32 xoopsmicrobutton.gif}>" alt="XOOPS" ></a>
2+
<a href="https://xoops.org/" title="Visit XOOPS" target="_blank"><img src="<{xoModuleIcons32 'xoopsmicrobutton.gif'}>" alt="XOOPS" ></a>
33
</div>
44
<div class="center smallsmall italic pad5">
55
<strong>wgBlocks</strong><{$smarty.const._AM_WGBLOCKS_MAINTAINEDBY}><a href="<{$maintainedby}>" title="Visit Support Forum" class="tooltip" rel="external">Support Forum</a>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!-- Header -->
2-
<{includeq file='db:wgblocks_admin_header.tpl' }>
2+
<{include file='db:wgblocks_admin_header.tpl' }>
33

44
<!-- Index Page -->
55
<div class="top"><{$index|default:false}></div>
66

77
<!-- Footer -->
8-
<{includeq file='db:wgblocks_admin_footer.tpl' }>
8+
<{include file='db:wgblocks_admin_footer.tpl' }>

templates/admin/wgblocks_admin_items.tpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
<td class='center'><{$item.submitter}></td>
4646
<td class='center'><{$item.usedBlocks}></td>
4747
<td class="center width5">
48-
<a href="items.php?op=edit&amp;item_id=<{$item.id}>&amp;start=<{$start}>&amp;limit=<{$limit}>" title="<{$smarty.const._EDIT}>"><img src="<{xoModuleIcons16 edit.png}>" alt="<{$smarty.const._EDIT}> items" ></a>
49-
<a href="items.php?op=clone&amp;item_id_source=<{$item.id}>" title="<{$smarty.const._CLONE}>"><img src="<{xoModuleIcons16 editcopy.png}>" alt="<{$smarty.const._CLONE}> items" ></a>
50-
<a href="items.php?op=delete&amp;item_id=<{$item.id}>" title="<{$smarty.const._DELETE}>"><img src="<{xoModuleIcons16 delete.png}>" alt="<{$smarty.const._DELETE}> items" ></a>
48+
<a href="items.php?op=edit&amp;item_id=<{$item.id}>&amp;start=<{$start}>&amp;limit=<{$limit}>" title="<{$smarty.const._EDIT}>"><img src="<{xoModuleIcons16 'edit.png'}>" alt="<{$smarty.const._EDIT}> items" ></a>
49+
<a href="items.php?op=clone&amp;item_id_source=<{$item.id}>" title="<{$smarty.const._CLONE}>"><img src="<{xoModuleIcons16 'editcopy.png'}>" alt="<{$smarty.const._CLONE}> items" ></a>
50+
<a href="items.php?op=delete&amp;item_id=<{$item.id}>" title="<{$smarty.const._DELETE}>"><img src="<{xoModuleIcons16 'delete.png'}>" alt="<{$smarty.const._DELETE}> items" ></a>
5151
</td>
5252
</tr>
5353
<{/foreach}>

xoops_version.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@
2929
// ------------------- Informations ------------------- //
3030
$modversion = [
3131
'name' => \_MI_WGBLOCKS_NAME,
32-
'version' => '1.0',
32+
'version' => '1.1.0',
33+
'release' => '04/09/2023',
34+
'release_date' => '2023/04/09',
35+
'module_status' => 'RC1',
3336
'description' => \_MI_WGBLOCKS_DESC,
3437
'author' => 'Goffy - Wedega.com',
3538
'author_mail' => 'webmaster@wedega.com',
@@ -41,11 +44,10 @@
4144
'help' => 'page=help',
4245
'release_info' => 'release_info',
4346
'release_file' => \XOOPS_URL . '/modules/wgblocks/docs/release_info file',
44-
'release_date' => '2023/02/28',
4547
'manual' => 'link to manual file',
4648
'manual_file' => \XOOPS_URL . '/modules/wgblocks/docs/install.txt',
4749
'min_php' => '7.4',
48-
'min_xoops' => '2.5.11 Beta1',
50+
'min_xoops' => '2.5.11 RC1',
4951
'min_admin' => '1.2',
5052
'min_db' => ['mysql' => '5.6', 'mysqli' => '5.6'],
5153
'image' => 'assets/images/logoModule.png',
@@ -61,8 +63,6 @@
6163
'support_name' => 'Support Forum',
6264
'module_website_url' => 'www.xoops.org',
6365
'module_website_name' => 'XOOPS Project',
64-
'release' => '02/28/2023',
65-
'module_status' => 'Stable',
6666
'system_menu' => 1,
6767
'hasAdmin' => 1,
6868
'hasMain' => 0,

0 commit comments

Comments
 (0)