X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=themes%2Faqua%2Frenderer.php;h=10c3c95641d9e7e09f7aad57d26b94b2d753d01a;hb=61ba1cc9406056fdb2c22bd253521fae45e660c0;hp=963ca65027f7f4df783470fe144abcbd6d68434b;hpb=95375dcd6bc3dae571d94b23e85889369d0be4a7;p=fa-stable.git diff --git a/themes/aqua/renderer.php b/themes/aqua/renderer.php index 963ca650..10c3c956 100644 --- a/themes/aqua/renderer.php +++ b/themes/aqua/renderer.php @@ -13,12 +13,13 @@ { function get_icon($category) { - global $path_to_root; - - // uncomment this line if you want to use the pre-defined categories. - //$img = $category == '' ? 'right.gif' : $category.'.png'; - $img = 'right.gif'; - return "  "; + global $path_to_root, $show_menu_category_icons; + + if ($show_menu_category_icons) + $img = $category == '' ? 'right.gif' : $category.'.png'; + else + $img = 'right.gif'; + return "  "; } function wa_header()