====== Action menu ====== This hack help you to add selection action menu like in MoinMoin wiki and GMail Add this to the end of ''\tpl\\main.php'' file: /** * Create actions select box * * Create actions select box. * * @author Kirill Bezrukov */ function tpl_select_actions(){ global $ID; global $INFO; global $REV; global $ACT; global $conf; global $lang; global $auth; if($ACT == 'show' || $ACT == 'search'){ if($INFO['writable']){ if($INFO['exists']){ print ''; } } } return true; } and this to the top bar div:
++
--- //[[kirbez@mail.ru|Kirill Bezrukov]] 2008/03/18 10:03//