X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Ffunctions_helpviewer.inc;h=437ffe12e1a649bd63bccc83c458e343497d65be;hb=8c49340e770277217dfd576f3f679014b70c4f63;hp=df7fc436c0fb9d1ec231b14d7a2f0e8dc0392fbe;hpb=424c35d26074594c939a3190ab34e50365a2d4b1;p=gosa.git diff --git a/gosa-core/include/functions_helpviewer.inc b/gosa-core/include/functions_helpviewer.inc index df7fc436c..437ffe12e 100644 --- a/gosa-core/include/functions_helpviewer.inc +++ b/gosa-core/include/functions_helpviewer.inc @@ -42,9 +42,9 @@ class parseXml $xmldata= fread($fh, 100000); fclose($fh); if(!xml_parse($this->parser, chop($xmldata))){ - print(sprintf(_("XML error in guide.xml: %s at line %d"), - xml_error_string(xml_get_error_code($this->parser)), - xml_get_current_line_number($this->parser))); + print(sprintf(_("XML error in guide.xml: %s at line %s"), + bold(xml_error_string(xml_get_error_code($this->parser))), + bold(xml_get_current_line_number($this->parser)))); exit; } return($this->entries); @@ -273,9 +273,9 @@ function search($arr,$word) $useablewords =array(); // Temporary searchword handling $tryword = ""; // Temporary searchword handling $result['global']['maxhit'] = 0; - session::global_un_set('lastresults'); - session::global_un_set('parsed_search_keyword'); - session::global_set('parsed_search_keyword',""); + session::un_set('lastresults'); + session::un_set('parsed_search_keyword'); + session::set('parsed_search_keyword',""); error_reporting(E_ALL | E_STRICT); @@ -284,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){ @@ -292,7 +292,7 @@ function search($arr,$word) /* Filter words smaler than 3 chars */ if(strlen($tryword)>=$minwordlength) { - session::global_set('parsed_search_keyword', session::global_get('parsed_search_keyword').$tryword." "); + session::set('parsed_search_keyword', session::get('parsed_search_keyword').$tryword." "); $useablewords[]=$tryword; } } @@ -344,7 +344,7 @@ function search($arr,$word) } /* Save result in Session, so we can mark words later, or go back to search, without searching again*/ - session::global_set('lastresults',$result); + session::set('lastresults',$result); return($result); } @@ -376,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]; @@ -386,8 +386,8 @@ function searchlist($arr,$res,$maxresults) /* appending footer message for resultlist */ $ret.= "
".sprintf(_("%s results for your search with the keyword %s"), - "".count($topten)."", - "".session::global_get('parsed_search_keyword').""); + bold(count($topten)), + bold(session::get('parsed_search_keyword'))); $ret.="

"; return($ret); @@ -458,9 +458,7 @@ function createResultEntry($entry,$res,$name,$max) - - ".(sprintf(_("%s%% hit rate in file %s"),$percentage,$name))." - + ".(sprintf(_("%s%% hit rate in file %s"), bold($percentage), bold($name)))." @@ -494,7 +492,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;