mirror of
https://github.com/e107inc/e107.git
synced 2025-08-17 03:54:09 +02:00
More notice removal
This commit is contained in:
@@ -252,11 +252,11 @@ class bbcode_shortcodes extends e_shortcode
|
||||
$emote = ",".$emote;
|
||||
}
|
||||
$text = "onclick=\"{$func}('".$func_var."'{$emote})\" ";
|
||||
$bbcode_help = $this->var['hint_func'];
|
||||
$bbcode_help = vartrue($this->var['hint_func']);
|
||||
$bbcode_tag = $this->var['tagid'];
|
||||
$_helptxt = $hint_diz;
|
||||
// onclick="addtext('[justify][/justify]')" onmouseout="help('','admin')" onmouseover="help('Justify align: [justify]This text will be justified[/justify]','admin')">
|
||||
$text .= ($this->var['hint_active'] ? "onmouseout=\"{$bbcode_help}('','{$bbcode_tag}')\" onmouseover=\"{$bbcode_help}('".$_helptxt."','{$bbcode_tag}')\"" : "" );
|
||||
$text .= (vartrue($this->var['hint_active']) ? "onmouseout=\"{$bbcode_help}('','{$bbcode_tag}')\" onmouseover=\"{$bbcode_help}('".$_helptxt."','{$bbcode_tag}')\"" : "" );
|
||||
return $text;
|
||||
}
|
||||
|
||||
|
@@ -71,8 +71,8 @@ function imageselector_shortcode($parm = '', $mod = '')
|
||||
}
|
||||
|
||||
$multi = ($multiple == "TRUE" || $multiple == "1") ? " multiple='multiple' style='height:{$height}'" : ""; //style='float:left'
|
||||
$width = ($width) ? $width : "0";
|
||||
$height = ($height) ? $height : "0";
|
||||
$width = (vartrue($width)) ? $width : "0";
|
||||
$height = (vartrue($height)) ? $height : "0";
|
||||
$label = ($label) ? $label : " -- -- ";
|
||||
$tabindex = varset($tabindex) ? " tabindex='{$tabindex}'" : '';
|
||||
$class = varset($class) ? " class='{$class}'" : " class='tbox imgselector'";
|
||||
|
@@ -52,7 +52,7 @@ class core_user_url extends eUrlConfig
|
||||
if(isset($params['user_id']) && !empty($params['user_id'])) $params['id'] = $params['user_id'];
|
||||
|
||||
$url = 'user.php';
|
||||
$page = $params['page'] ? intval($params['page']) : '0';
|
||||
$page = vartrue($params['page']) ? intval($params['page']) : '0';
|
||||
|
||||
if($route[0] == 'profile')
|
||||
{
|
||||
|
Reference in New Issue
Block a user