From: Michael M Slusarz Date: Wed, 10 Jun 2009 05:24:30 +0000 (+0000) Subject: Bug: X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=1474cf43c70091e61bb1d56eb96e103137e4081b;p=horde.git Bug: Submitted by: Merge after: String:: -> Horde_String & Util:: -> Horde_Util:: conversions. I gave in and ran a sed script to try to get the rest of these changed. Here's the commands I ran: find . -type f | xargs fgrep -l ' String::' | xargs sed -i '' -e 's/ String::/ Horde_String::/g' find . -type f | xargs fgrep -l '(String::' | xargs sed -i '' -e 's/(String::/(Horde_String::/g' find . -type f | xargs grep -l '^String::' | xargs sed -i '' -e 's/^String::/Horde_String::/g' I then went through and removed files that shouldn't be updated (docs files and package.xml files). Hopefully, false positives have been kept to a minimum. --- diff --git a/graphgen.php b/graphgen.php index 9ef8a9272..d997bbfce 100644 --- a/graphgen.php +++ b/graphgen.php @@ -1,6 +1,6 @@ * @@ -19,9 +19,9 @@ require_once 'Image/Graph.php'; #setlocale(LC_ALL, NLS::select()); setlocale(LC_ALL, 'en_US'); -$graphtype = Util::getFormData('graph'); +$graphtype = Horde_Util::getFormData('graph'); $graphinfo = Operator::getGraphInfo($graphtype); -$cachekey = Util::getFormData('key'); +$cachekey = Horde_Util::getFormData('key'); $stats = unserialize($cache->get($cachekey, 0)); diff --git a/templates/common-header.inc b/templates/common-header.inc index 788389c5b..d6551a577 100644 --- a/templates/common-header.inc +++ b/templates/common-header.inc @@ -26,4 +26,4 @@ Horde::includeScriptFiles(); -> +> diff --git a/viewgraph.php b/viewgraph.php index 2aab8ecb1..218fa7baa 100644 --- a/viewgraph.php +++ b/viewgraph.php @@ -1,6 +1,6 @@ 'numcalls', 'key' => $cachekey)); - $minutes_graph = Util::addParameter($minutes_graph, array( + $minutes_graph = Horde_Util::addParameter($minutes_graph, array( 'graph' => 'minutes', 'key' => $cachekey)); - $failed_graph = Util::addParameter($failed_graph, array( + $failed_graph = Horde_Util::addParameter($failed_graph, array( 'graph' => 'failed', 'key' => $cachekey)); }