This commit is contained in:
Andreas Österreicher
2011-02-08 10:53:08 +00:00
parent d1f204fb3e
commit 242e5c4c78
5 changed files with 224 additions and 14 deletions
+16 -12
View File
@@ -104,18 +104,22 @@ foreach($menu AS $m1)
{
if (isset($m2['permissions']) && !checkpermission($m2['permissions']))
continue;
echo "\n\t\t".'<img title="'.$m2['name'].'" src="../skin/images/bullet_arrow_down.png" alt="page go" border="0">&nbsp;';
if (isset($m2['link']))
echo '<a href="'.$m2['link'].'" ';
if (isset($m2['target']))
echo 'target="'.$m2['target'].'" ';
if (isset($m2['link']))
echo '>';
if (isset($m2['name']))
echo $m2['name'];
if (isset($m2['link']))
echo '</a><br>';
$umbruch=false;
if($m2['name']!='')
{
echo "\n\t\t".'<img title="'.$m2['name'].'" src="../skin/images/bullet_arrow_down.png" alt="page go" border="0">&nbsp;';
if (isset($m2['link']))
echo '<a href="'.$m2['link'].'" ';
if (isset($m2['target']))
echo 'target="'.$m2['target'].'" ';
if (isset($m2['link']))
echo '>';
if (isset($m2['name']))
echo $m2['name'];
if (isset($m2['link']))
echo '</a><br>';
$umbruch=false;
}
foreach($m2 AS $m3)
{