From: Chuck Hagenbuch Date: Tue, 5 Oct 2010 21:02:47 +0000 (-0400) Subject: Fix menu in a few places X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=fea960ef4a738c02d6ffc41905c225ab1c6bca9e;p=horde.git Fix menu in a few places --- diff --git a/ansel/image.php b/ansel/image.php index b8bcfd709..d9d577828 100644 --- a/ansel/image.php +++ b/ansel/image.php @@ -509,7 +509,7 @@ case 'previewrotate270': $image->filename); require ANSEL_TEMPLATES . '/common-header.inc'; - require ANSEL_TEMPLATES . '/menu.inc'; + echo Horde::menu(); require ANSEL_TEMPLATES . '/image/preview_image.inc'; require $registry->get('templates', 'horde') . '/common-footer.inc'; exit; @@ -736,7 +736,7 @@ case 'previewcrop': $params = $x1 . '.' . $y1 . '.' . $x2 . '.' . $y2; require ANSEL_TEMPLATES . '/common-header.inc'; - require ANSEL_TEMPLATES . '/menu.inc'; + echo Horde::menu(); require ANSEL_TEMPLATES . '/image/preview_cropimage.inc'; require $registry->get('templates', 'horde') . '/common-footer.inc'; } @@ -759,7 +759,7 @@ default: } require ANSEL_TEMPLATES . '/common-header.inc'; -require ANSEL_TEMPLATES . '/menu.inc'; +echo Horde::menu(); $form->renderActive($renderer, $vars, 'image.php', 'post', 'multipart/form-data'); require $registry->get('templates', 'horde') . '/common-footer.inc';