Skip to content

Commit

Permalink
Fix für EZ Pages Menüpunkt in mobiler responsive_classic Version
Browse files Browse the repository at this point in the history
  • Loading branch information
webchills committed Aug 4, 2019
1 parent c605c79 commit b6367ef
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @copyright Copyright 2003-2019 Zen Cart Development Team * @copyright Copyright 2003-2019 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce * @copyright Portions Copyright 2003 osCommerce
* @license https://www.zen-cart-pro.at/license/3_0.txt GNU General Public License V3.0 * @license https://www.zen-cart-pro.at/license/3_0.txt GNU General Public License V3.0
* @version $Id: tpl_modules_mobile_menu.php 5 2019-06-15 17:33:58Z webchills $ * @version $Id: tpl_modules_mobile_menu.php 6 2019-08-04 18:33:58Z webchills $
*/ */
?> ?>


Expand Down Expand Up @@ -134,24 +134,24 @@
<li><a href="<?php echo zen_href_link(FILENAME_PAGE_4); ?>"><?php echo BOX_INFORMATION_PAGE_4; ?></a></li> <li><a href="<?php echo zen_href_link(FILENAME_PAGE_4); ?>"><?php echo BOX_INFORMATION_PAGE_4; ?></a></li>
<?php } ?> <?php } ?>
</ul> </ul>
</li> </li>

<li><span><?php echo BOX_HEADING_EZPAGES; ?></span>
<ul>
<?php <?php
include(DIR_WS_MODULES . zen_get_module_directory('ezpages_bar_header.php')); include(DIR_WS_MODULES . zen_get_module_directory('ezpages_bar_header.php'));
if (!empty($var_linksList)) { if (!empty($var_linksList)) {
?>
<li><span><?php echo BOX_HEADING_EZPAGES; ?></span>
<ul>
<?php
for ($i=1, $n=sizeof($var_linksList); $i<=$n; $i++) { for ($i=1, $n=sizeof($var_linksList); $i<=$n; $i++) {
echo '<li><a href="' . $var_linksList[$i]['link'] . '">' . $var_linksList[$i]['name'] . '</a></li>' . "\n"; echo '<li><a href="' . $var_linksList[$i]['link'] . '">' . $var_linksList[$i]['name'] . '</a></li>' . "\n";
} }
}
?> ?>
</ul> </ul>
</li> </li>

<?php

}
?>
<li id="menu-search"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></li> <li id="menu-search"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></li>

</ul> </ul>
</nav> </nav>


Expand Down

0 comments on commit b6367ef

Please sign in to comment.