mirror of
https://github.com/e107inc/e107.git
synced 2025-08-07 07:06:30 +02:00
Fixed error in {XURL_ICONS} shortcode. Added a test. Fixed some warnings in the admin/language page.
This commit is contained in:
@@ -90,11 +90,11 @@ class social_shortcodes extends e_shortcode
|
||||
);
|
||||
|
||||
// print_a($social);
|
||||
|
||||
$class = (!empty($parm['size'])) ? 'fa-'.$parm['size'] : '';
|
||||
$class .= (isset($parm['class'])) ? (string) $parm['class'] : $class;
|
||||
|
||||
|
||||
$class = (isset($parm['class'])) ? (string) $parm['class'] : '';
|
||||
$class .= (!empty($parm['size'])) ? 'fa-'.$parm['size'] : '';
|
||||
|
||||
if(!empty($parm['type']))
|
||||
{
|
||||
$newList = array();
|
||||
|
Reference in New Issue
Block a user