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.