X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Ffunctions_helpviewer.inc;h=8bb1dcdd6c4bf3cd4f9e2dee39090a98a3ceca6c;hb=7ce564d554053c9ff7ae13d00df50f5a1961357d;hp=947489171cfa35dc3889781058b96a1d6ddb2d83;hpb=495f4053089697f218ea5ad29b38da2366c35888;p=gosa.git diff --git a/gosa-core/include/functions_helpviewer.inc b/gosa-core/include/functions_helpviewer.inc index 947489171..8bb1dcdd6 100644 --- a/gosa-core/include/functions_helpviewer.inc +++ b/gosa-core/include/functions_helpviewer.inc @@ -63,9 +63,9 @@ function genIndex() { global $helpobject; $str = ""; - $helpobject = session::get('helpobject'); + $helpobject = session::global_get('helpobject'); $ui= get_userinfo(); - $test = new pluglist(session::get('config'), $ui); + $test = new pluglist(session::global_get('config'), $ui); $current_hl = ""; foreach($helpobject['helpconf'] as $id => $attrs){ $path = $test -> get_path($id); @@ -258,8 +258,7 @@ function remove_unwanted_tags($str,$replacements) function linkwrapper($str,$link) { $str = preg_replace("/HREF=\"http/i","target=\"_blank\" href=\"http",$str); - $str = preg_replace("/HREF=\"/","href=\"".$link."?pg=",$str); - $str=str_replace("HREF=\"","href=\"".$link."?pg=",$str); + $str = str_replace("HREF=\"","href=\"".$link."?pg=",$str); return($str); } @@ -285,7 +284,7 @@ function search($arr,$word) /* Filter all unusable chars */ $word = preg_replace($allowed_chars_in_searchword,"",$word); - $words = split(" ",str_replace("+"," ",$word)); + $words = explode(" ",str_replace("+"," ",$word)); /* Check all wordlengths */ foreach($words as $tryword){ @@ -377,7 +376,7 @@ function searchlist($arr,$res,$maxresults) /* Foreach */ foreach($topten as $key => $hits) { - $ks = split("\/",$key); + $ks = explode("/",$key); $k1 = $ks[0]; $k2 = $ks[1]; @@ -495,7 +494,7 @@ function getheader_from_content($str) { $str = strip_tags($str); $pos = 0; - $arr = split("\n",$str); + $arr = preg_split("/\n/",$str); foreach($arr as $possibleheadline){ if(strlen($possibleheadline)>=3){ return $possibleheadline;