Skip to content

Commit

Permalink
r2_3_1_alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
gigamaster committed Nov 22, 2022
1 parent 6c383e1 commit 17959b2
Show file tree
Hide file tree
Showing 259 changed files with 7,380 additions and 16,146 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ All notable changes to this project will be documented in this file.

Refer please to repository Legacy Commits

## [2.3.1] 2022-11-21
## [2.3.1] 2022-11-22

### Added
- Theme PicoCSS
Expand Down
27 changes: 14 additions & 13 deletions html/class/commentrenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ public function __construct(&$tpl, $use_icons = true, $do_iconcheck = false)
*
* @param object $tpl reference to a {@link Smarty} object
* @param bool $use_icons
* @param bool $do_iconcheck
* @param bool $do_iconcheck default = false
* @return \XoopsCommentRenderer
*/
public function &instance(&$tpl, $use_icons = true, $do_iconcheck = false)
public function &instance(object &$tpl, bool $use_icons = true, bool $do_iconcheck)
{
static $instance;
if (!isset($instance)) {
Expand All @@ -62,9 +62,9 @@ public function &instance(&$tpl, $use_icons = true, $do_iconcheck = false)
/**
* Accessor
*
* @param object &$comments_arr array of {@link XoopsComment} objects
* @param object &$comments_arr array of {@link XoopsComment} objects
**/
public function setComments(&$comments_arr)
public function setComments(object &$comments_arr)
{
if (isset($this->_comments)) {
unset($this->_comments);
Expand All @@ -75,9 +75,9 @@ public function setComments(&$comments_arr)
/**
* Render the comments in flat view
*
* @param bool $admin_view
* @param bool $admin_view default=false
**/
public function renderFlatView($admin_view = false)
public function renderFlatView(bool $admin_view)
{
foreach ($this->_comments as $iValue) {
if (false !== $this->_useIcons) {
Expand Down Expand Up @@ -115,10 +115,10 @@ public function renderFlatView($admin_view = false)
* This method calls itself recursively
*
* @param int $comment_id Should be "0" when called by client
* @param bool $admin_view
* @param bool $admin_view default = false
* @param bool $show_nav
**/
public function renderThreadView($comment_id = 0, $admin_view = false, $show_nav = true)
public function renderThreadView(int $comment_id = 0, bool $admin_view, bool $show_nav = true)
{
include_once XOOPS_ROOT_PATH.'/class/tree.php';
// construct comment tree
Expand Down Expand Up @@ -187,7 +187,7 @@ public function renderThreadView($comment_id = 0, $admin_view = false, $show_nav
*
* @access private
**/
public function _renderThreadReplies(&$thread, $key, &$replies, $prefix, $admin_view, $depth = 0, $current_prefix = '')
public function _renderThreadReplies(array &$thread, int $key, array &$replies, string $prefix, bool $admin_view, int $depth = 0, string $current_prefix = '')
{
if ($depth > 0) {
if (false !== $this->_useIcons) {
Expand Down Expand Up @@ -230,9 +230,9 @@ public function _renderThreadReplies(&$thread, $key, &$replies, $prefix, $admin_
* Danger: Recursive!
*
* @param int $comment_id Always "0" when called by client.
* @param bool $admin_view
* @param bool $admin_view default = false
**/
public function renderNestView($comment_id = 0, $admin_view = false)
public function renderNestView(int $comment_id = 0, bool $admin_view)
{
include_once XOOPS_ROOT_PATH.'/class/tree.php';
$xot = new XoopsObjectTree($this->_comments, 'com_id', 'com_pid', 'com_rootid');
Expand Down Expand Up @@ -282,12 +282,12 @@ public function renderNestView($comment_id = 0, $admin_view = false)
* @param int $key
* @param array $replies
* @param string $prefix
* @param bool $admin_view
* @param bool $admin_view default =" false
* @param int $depth
*
* @access private
**/
public function _renderNestReplies(&$thread, $key, &$replies, $prefix, $admin_view, $depth = 0)
public function _renderNestReplies(array &$thread, int $key, array &$replies, string $prefix, bool $admin_view, int $depth = 0)
{
if ($depth > 0) {
if (false !== $this->_useIcons) {
Expand Down Expand Up @@ -342,6 +342,7 @@ public function _renderNestReplies(&$thread, $key, &$replies, $prefix, $admin_vi
*
* @access private
**/

public function _getPosterName($poster_id)
{
$poster['id'] = (int)$poster_id;
Expand Down
2 changes: 1 addition & 1 deletion html/install/custom/install_insertData_theme.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
}
if ( empty( $available_themes ) ) {
$available_themes = [ 'xcl_default', 'xcl-bootstrap' ]; // !Todo Theme boilerplate
$available_themes = [ 'xcl_default' ]; // !Todo Theme boilerplate, , 'xcl-darkmode'
}

$default_theme = 'xcl_default';
Expand Down
14 changes: 7 additions & 7 deletions html/install/include/makedata.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ function make_data( &$dbm, &$cm, $adminname, $adminpass, $adminmail, $language,

// data for table 'banner'

$dbm->insert( 'banner', " (bid, cid, imptotal, impmade, clicks, imageurl, clickurl, date, htmlcode) VALUES (1, 1, 0, 1, 0, '" . XOOPS_URL . "/images/banners/banner.png', 'https://xoopscube.org/', 1008813250, '')" );
$dbm->insert( 'banner', " (bid, cid, imptotal, impmade, clicks, imageurl, clickurl, date, htmlcode) VALUES (1, 1, 0, 1, 0, '" . XOOPS_URL . "/images/banners/banner.png', 'https://github.com/xoopscube/legacy', 1008813250, '')" );

// default theme

$time = time();
$dbm->insert( 'tplset', " VALUES (1, 'default', 'XCL Default Template Set', '', " . $time . ')' );
$dbm->insert( 'tplset', " VALUES (1, 'default', 'Default Template Set', '', " . $time . ')' );

// data for table 'config'

$dbm->insert( 'config', " VALUES (1, 0, 1, 'sitename', '_MD_AM_SITENAME', 'XCL Web Application Platform', '_MD_AM_SITENAMEDSC', 'textbox', 'text', 0)" );
$dbm->insert( 'config', " VALUES (1, 0, 1, 'sitename', '_MD_AM_SITENAME', 'Web Application Platform', '_MD_AM_SITENAMEDSC', 'textbox', 'text', 0)" );
$dbm->insert( 'config', " VALUES (2, 0, 1, 'slogan', '_MD_AM_SLOGAN', 'Just Use it!', '_MD_AM_SLOGANDSC', 'textbox', 'text', 2)" );
$dbm->insert( 'config', " VALUES (3, 0, 1, 'language', '_MD_AM_LANGUAGE', '" . addslashes( $language ) . "', '_MD_AM_LANGUAGEDSC', 'language', 'other', 4)" );
$dbm->insert( 'config', " VALUES (4, 0, 1, 'startpage', '_MD_AM_STARTPAGE', '--', '_MD_AM_STARTPAGEDSC', 'startpage', 'other', 6)" );
Expand Down Expand Up @@ -79,11 +79,11 @@ function make_data( &$dbm, &$cm, $adminname, $adminpass, $adminmail, $language,
$dbm->insert( 'config', " VALUES (47, 0, 1, 'enable_badips', '_MD_AM_DOBADIPS', '0', '_MD_AM_DOBADIPSDSC', 'yesno', 'int', 40)" );
$dbm->insert( 'config', " VALUES (48, 0, 1, 'cool_uri', '_MD_AM_COOLURI', '0', '_MD_AM_COOLURIDSC', 'yesno', 'int', 17)" );
$dbm->insert( 'config', " VALUES (53, 0, 1, 'use_mysession', '_MD_AM_USEMYSESS', '0', '_MD_AM_USEMYSESSDSC', 'yesno', 'int', 19)" );
$dbm->insert( 'config', " VALUES (57, 0, 1, 'theme_fromfile', '_MD_AM_THEMEFILE', '0', '_MD_AM_THEMEFILEDSC', 'yesno', 'int', 13)" );
$dbm->insert( 'config', " VALUES (57, 0, 1, 'theme_fromfile', '_MD_AM_THEMEFILE', '1', '_MD_AM_THEMEFILEDSC', 'yesno', 'int', 13)" );
$dbm->insert( 'config', " VALUES (58, 0, 1, 'closesite', '_MD_AM_CLOSESITE', '0', '_MD_AM_CLOSESITEDSC', 'yesno', 'int', 26)" );
$dbm->insert( 'config', " VALUES (59, 0, 1, 'closesite_okgrp', '_MD_AM_CLOSESITEOK', '" . addslashes( serialize( [ '1' ] ) ) . "', '_MD_AM_CLOSESITEOKDSC', 'group_multi', 'array', 27)" );
$dbm->insert( 'config', " VALUES (60, 0, 1, 'closesite_text', '_MD_AM_CLOSESITETXT', '" . _INSTALL_L165 . "', '_MD_AM_CLOSESITETXTDSC', 'textarea', 'text', 28)" );
$dbm->insert( 'config', " VALUES (61, 0, 1, 'sslpost_name', '_MD_AM_SSLPOST', 'xcl_wap_ssl', '_MD_AM_SSLPOSTDSC', 'textbox', 'text', 31)" );
$dbm->insert( 'config', " VALUES (61, 0, 1, 'sslpost_name', '_MD_AM_SSLPOST', 'wap_ssl', '_MD_AM_SSLPOSTDSC', 'textbox', 'text', 31)" );
$dbm->insert( 'config', " VALUES (62, 0, 1, 'module_cache', '_MD_AM_MODCACHE', '', '_MD_AM_MODCACHEDSC', 'module_cache', 'array', 50)" );
$dbm->insert( 'config', " VALUES (63, 0, 1, 'template_set', '_MD_AM_DTPLSET', 'default', '_MD_AM_DTPLSETDSC', 'tplset', 'other', 14)" );

Expand All @@ -94,8 +94,8 @@ function make_data( &$dbm, &$cm, $adminname, $adminpass, $adminmail, $language,
$dbm->insert( 'config', " VALUES (68,0,6,'sendmailpath','_MD_AM_SENDMAILPATH','/usr/sbin/sendmail','_MD_AM_SENDMAILPATHDESC','textbox','text',5)" );
$dbm->insert( 'config', " VALUES (69,0,6,'from','_MD_AM_MAILFROM','','_MD_AM_MAILFROMDESC','textbox','text', 1)" );
$dbm->insert( 'config', " VALUES (70,0,6,'fromname','_MD_AM_MAILFROMNAME','','_MD_AM_MAILFROMNAMEDESC','textbox','text',2)" );
$dbm->insert( 'config', " VALUES (71, 0, 1, 'sslloginlink', '_MD_AM_SSLLINK', 'https://', '_MD_AM_SSLLINKDSC', 'textbox', 'text', 33)" );
$dbm->insert( 'config', " VALUES (72, 0, 1, 'theme_set_allowed', '_MD_AM_THEMEOK', '" . serialize( [ 'xcl_default' ] ) . "', '_MD_AM_THEMEOKDSC', 'theme_multi', 'array', 13)" );
$dbm->insert( 'config', " VALUES (71,0,1,'sslloginlink', '_MD_AM_SSLLINK', 'https://', '_MD_AM_SSLLINKDSC', 'textbox', 'text', 33)" );
$dbm->insert( 'config', " VALUES (72,0,1,'theme_set_allowed', '_MD_AM_THEMEOK', '" . serialize( [ 'xcl_default' ] ) . "', '_MD_AM_THEMEOKDSC', 'theme_multi', 'array', 13)" );
// RMV-NOTIFY... Need to specify which user is sender of notification PM
$dbm->insert( 'config', " VALUES (73,0,6,'fromuid','_MD_AM_MAILFROMUID','1','_MD_AM_MAILFROMUIDDESC','user','int',3)" );
// data for table 'users'
Expand Down
14 changes: 7 additions & 7 deletions html/install/wizards/install_updateConfig_go.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
$dbm = new db_manager();

// default settings
$xoopsConfig['sitename'] = 'XCL Web Application Platform';
$xoopsConfig['sitename'] = 'Web Application Platform';
$xoopsConfig['slogan'] = 'Just use it!';
$xoopsConfig['adminmail'] = '';
$xoopsConfig['language'] = 'english';
Expand All @@ -40,8 +40,8 @@
$xoopsConfig['self_delete'] = 0;
$xoopsConfig['gzip_compression'] = 0;
$xoopsConfig['uname_test_level'] = 0;
$xoopsConfig['usercookie'] = 'xcl_wap_user';
$xoopsConfig['sessioncookie'] = 'xcl_wap_session';
$xoopsConfig['usercookie'] = 'wap_user';
$xoopsConfig['sessioncookie'] = 'wap_session';
$xoopsConfig['sessionexpire'] = 4500;
$xoopsConfig['server_TZ'] = 0;
$xoopsConfig['default_TZ'] = 0;
Expand Down Expand Up @@ -81,7 +81,7 @@
$dbm->insert( 'config', " VALUES (45, 0, 5, 'keyword_min', '_MD_AM_MINSEARCH', '5', '_MD_AM_MINSEARCHDSC', 'textbox', 'int', 1)" );
$dbm->insert( 'config', " VALUES (47, 0, 1, 'enable_badips', '_MD_AM_DOBADIPS', '0', '_MD_AM_DOBADIPSDSC', 'yesno', 'int', 40)" );
$dbm->insert( 'config', " VALUES (53, 0, 1, 'use_mysession', '_MD_AM_USEMYSESS', '0', '_MD_AM_USEMYSESSDSC', 'yesno', 'int', 19)" );
$dbm->insert( 'config', " VALUES (57, 0, 1, 'theme_fromfile', '_MD_AM_THEMEFILE', '0', '_MD_AM_THEMEFILEDSC', 'yesno', 'int', 13)" );
$dbm->insert( 'config', " VALUES (57, 0, 1, 'theme_fromfile', '_MD_AM_THEMEFILE', '1', '_MD_AM_THEMEFILEDSC', 'yesno', 'int', 13)" );
$dbm->insert( 'config', " VALUES (58, 0, 1, 'closesite', '_MD_AM_CLOSESITE', '0', '_MD_AM_CLOSESITEDSC', 'yesno', 'int', 26)" );
$dbm->insert( 'config', " VALUES (59, 0, 1, 'closesite_okgrp', '_MD_AM_CLOSESITEOK', '" . addslashes( serialize( [ '1' ] ) ) . "', '_MD_AM_CLOSESITEOKDSC', 'group_multi', 'array', 27)" );
$dbm->insert( 'config', " VALUES (60, 0, 1, 'closesite_text', '_MD_AM_CLOSESITETXT', '" . _INSTALL_L165 . "', '_MD_AM_CLOSESITETXTDSC', 'textarea', 'text', 28)" );
Expand All @@ -95,15 +95,15 @@
$dbm->insert( 'config', " VALUES (68,0,6,'sendmailpath','_MD_AM_SENDMAILPATH','/usr/sbin/sendmail','_MD_AM_SENDMAILPATHDESC','textbox','text',5)" );
$dbm->insert( 'config', " VALUES (69,0,6,'from','_MD_AM_MAILFROM','','_MD_AM_MAILFROMDESC','textbox','text',1)" );
$dbm->insert( 'config', " VALUES (70,0,6,'fromname','_MD_AM_MAILFROMNAME','','_MD_AM_MAILFROMNAMEDESC','textbox','text',2)" );
$dbm->insert( 'config', " VALUES (71, 0, 1, 'sslloginlink', '_MD_AM_SSLLINK', 'https://', '_MD_AM_SSLLINKDSC', 'textbox', 'text', 33)" );
$dbm->insert( 'config', " VALUES (72, 0, 1, 'theme_set_allowed', '_MD_AM_THEMEOK', '" . serialize( [ 'default' ] ) . "', '_MD_AM_THEMEOKDSC', 'theme_multi', 'array', 13)" );
$dbm->insert( 'config', " VALUES (71,0,1, 'sslloginlink', '_MD_AM_SSLLINK', 'https://', '_MD_AM_SSLLINKDSC', 'textbox', 'text', 33)" );
$dbm->insert( 'config', " VALUES (72,0,1, 'theme_set_allowed', '_MD_AM_THEMEOK', '" . serialize( [ 'xcl_default' ] ) . "', '_MD_AM_THEMEOKDSC', 'theme_multi', 'array', 13)" );
$dbm->insert( 'config', " VALUES (73,0,6,'fromuid','_MD_AM_MAILFROMUID','1','_MD_AM_MAILFROMUIDDESC','user','int',3)" );


// default the default theme

$time = time();
$dbm->insert( 'tplset', " VALUES (1, 'xcl_default', 'XCL 2.3.0 Default Theme', '', " . $time . ')' ); //TODO check install tplset
$dbm->insert( 'tplset', " VALUES (1, 'xcl_default', 'Default Theme', '', " . $time . ')' ); //TODO check install tplset



Expand Down
22 changes: 7 additions & 15 deletions html/login.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,22 +100,14 @@
if ('login' == $op) {
echo $header;
echo '
<div style="text-align: center; padding: 5px; margin: 0">
<div style="padding: 1em; margin: 0">
<form action="login.php" method="post">
<table class="outer" width="95%">
<tr>
<td class="head">'._USERNAME.'</td>
<td class="even"><input type="text" name="username" value="" /></td>
</tr>
<tr>
<td class="head">'._PASSWORD.'</td>
<td class="even"><input type="password" name="userpass" value="" /></td>
</tr>
<tr>
<td class="head">&nbsp;</td>
<td class="even"><input type="hidden" name="op" value="dologin" /><input type="submit" name="submit" value="'._LOGIN.'" /></td>
</tr>
</table>
<label for="username">'._USERNAME.'</label>
<br><input type="text" id="username" name="username" value="">
<label for="userpass">'._PASSWORD.'</label>
<br><input type="password" id="userpass" name="userpass" value="">
<input type="hidden" name="op" value="dologin">
<p><input class="button" type="submit" name="submit" value="'._LOGIN.'"></p>
</form>
</div>
';
Expand Down
3 changes: 0 additions & 3 deletions html/modules/ckeditor4/admin/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
if (defined('LEGACY_BASE_VERSION')) {
$pref = XOOPS_MODULE_URL . '/legacy/admin/index.php?action=PreferenceEdit&amp;confmod_id=';
$help = '<li><a href="' . XOOPS_MODULE_URL . '/legacy/admin/index.php?action=Help&amp;dirname=ckeditor4">' . _HELP . '</a></li>';
} else {
$pref = XOOPS_URL . '/modules/system/admin.php?fct=preferences&amp;op=showmod&amp;mod=';
$help = '';
}
?>

Expand Down
7 changes: 4 additions & 3 deletions html/modules/ckeditor4/ckeditor/contents.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ body
font-size: 12px;

/* Text color */
color: #333;

/*color: #333;*/
color: var(--ckeditor-color, #bbc6ce);
/* Remove the background color to make it transparent. */
background-color: #fff;
/*background-color: #fff;*/
background : var(--ckeditor-background, #11191f92);

margin: 20px;
}
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div class="right-sidebar">

<div class="right-panel-title"> Control Panel
<span class="theme-options theme-options-toogle">
<span class="theme-options theme-options-close">
<svg xmlns="https://www.w3.org/2000/svg" aria-hidden="true" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 1024 1024">
<path d="M512 0Q373 0 255 68.5T68.5 255 0 512t68.5 257T255 955.5t257 68.5 257-68.5T955.5 769t68.5-257-68.5-257T769 68.5 512 0zm0 961q-73 0-141.5-22.5T247 874t-96.5-97-64-123.5T64 512q0-91 35.5-174T195 195t143-95.5T512 64t174 35.5T829 195t95.5 143T960 512t-35.5 174T829 829.5t-143 96T512 961zm181-630q-9-9-22.5-9t-22.5 9L512 467 376 331q-9-9-22.5-9t-22.5 9-9 22.5 9 22.5l136 136-136 136q-6 6-8.5 14t0 16.5T331 693q9 9 22.5 9t22.5-9l136-136 136 136q9 9 22.5 9t22.5-9q6-6 8.5-14.5t0-16.5-8.5-14L557 512l136-136q9-9 9-22.5t-9-22.5z" fill="currentColor"></path>
</svg>
Expand Down
22 changes: 6 additions & 16 deletions html/modules/legacy/admin/templates/components/block-overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,19 @@

<div class="ui-card-small">
<div class="ui-card-small-icon ui-icon-blue">
<img class="svg blocks" src="<{"icons/icon-blocks.svg"|theme}>">
<img class="svg blocks" src="<{'icons/icon-blocks.svg'|theme}>">
</div>
<div class="ui-card-small-info">
<h3 class="ui-card-small-title"><{$smarty.const._AD_LEGACY_LANG_BLOCK_TOTAL}>: <strong><{$BlockTotal}></strong></h3>

<h4 class="ui-card-small-title"><{$smarty.const._AD_LEGACY_LANG_BLOCK_TOTAL}>: <strong><{$BlockTotal}></strong></h4>
</div>
</div>

<div class="ui-card-small">
<div class="ui-card-small-icon ui-icon-green">
<img class="svg block-active" src="<{"icons/icon-block-active.svg"|theme}>">
<img class="svg block-active" src="<{'icons/icon-block-active.svg'|theme}>">
</div>
<div class="ui-card-small-info">
<h3 class="ui-card-small-title"><{$smarty.const._AD_LEGACY_LANG_BLOCK_ACTIVETOTAL}>: <strong><{$ActiveBlockTotal}></strong></h3>
<h4 class="ui-card-small-title"><{$smarty.const._AD_LEGACY_LANG_BLOCK_ACTIVETOTAL}>: <strong><{$ActiveBlockTotal}></strong></h4>
<p class="ui-card-small-subtitle"><{$smarty.const._AD_LEGACY_LANG_BLOCK_INSTALLEDTOTAL}>:
<strong><{$ActiveInstalledBlockTotal}></strong> &nbsp;|&nbsp;
<{$smarty.const._AD_LEGACY_LANG_BLOCK_UNINSTALLEDTOTAL}>: <strong><{$ActiveUninstalledBlockTotal}></strong></p>
Expand All @@ -25,22 +24,13 @@ <h3 class="ui-card-small-title"><{$smarty.const._AD_LEGACY_LANG_BLOCK_ACTIVETOTA

<div class="ui-card-small">
<div class="ui-card-small-icon ui-icon-red">
<img class="svg block-inactive" src="<{"icons/icon-block-inactive.svg"|theme}>">
<img class="svg block-inactive" src="<{'icons/icon-block-inactive.svg'|theme}>">
</div>
<div class="ui-card-small-info">
<h3 class="ui-card-small-title"><{$smarty.const._AD_LEGACY_LANG_BLOCK_INACTIVETOTAL}>: <strong><{$InactiveBlockTotal}></strong></h3>
<h4 class="ui-card-small-title"><{$smarty.const._AD_LEGACY_LANG_BLOCK_INACTIVETOTAL}>: <strong><{$InactiveBlockTotal}></strong></h4>
<p class="ui-card-small-subtitle"><{$smarty.const._AD_LEGACY_LANG_BLOCK_INSTALLEDTOTAL}>: <strong><{$InactiveInstalledBlockTotal}></strong> &nbsp;|&nbsp;
<{$smarty.const._AD_LEGACY_LANG_BLOCK_UNINSTALLEDTOTAL}>: <strong><{$InactiveUninstalledBlockTotal}></strong></p>
</div>
</div>

<!-- <div class="ui-card-small">-->
<!-- <div class="ui-card-small-icon ui-icon-orange">-->
<!-- <img class="svg block-add" src="<{"icons/icon-block-plus.svg"|theme}>">-->
<!-- </div>-->
<!-- <div class="ui-card-small-info">-->
<!-- <h3 class="ui-card-small-title"><a href="#" id="open-help"><{$smarty.const._HELP}></a></h3>-->
<!-- </div>-->
<!-- </div>-->

</div><{* Module Blocks Overview *}>
Loading

0 comments on commit 17959b2

Please sign in to comment.