1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 01:25:01 +02:00

Fixed line-height on buttons. PHP warning removal.

This commit is contained in:
Cameron
2021-02-03 11:57:48 -08:00
parent 49b8a9690d
commit 0bffceca8e
4 changed files with 6 additions and 5 deletions

View File

@@ -670,8 +670,9 @@ class e_navigation
*/
public static function guessMenuIcon($key)
{
list($mode, $action) = explode('/', $key);
$tmp = explode('/', $key);
$mode = varset($tmp[0]);
$action = varset($tmp[1]);
switch($action)
{