Changeset 1404
- Timestamp:
- 07/16/09 19:50:03 (3 years ago)
- Location:
- trunk/wifidog-auth/wifidog/classes/Content
- Files:
-
- 3 modified
-
Langstring/Langstring.php (modified) (1 diff)
-
SimpleString/SimpleString.php (modified) (1 diff)
-
TrivialLangstring/TrivialLangstring.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/wifidog/classes/Content/Langstring/Langstring.php
r1249 r1404 88 88 * same major language (first part of the locale), failing that the first available 89 89 * string 90 * @param bool verbose : Should the function verbose when a string is empty ?90 * @param bool verbose : Should the function be verbose when a string is empty ? 91 91 * @return UTF-8 string 92 92 */ -
trunk/wifidog-auth/wifidog/classes/Content/SimpleString/SimpleString.php
r1246 r1404 173 173 * @return string Returns the content 174 174 */ 175 public function __toString( $verbose = true)175 public function __toString() 176 176 { 177 $verbose = true; 177 178 return strip_tags($this->getString($verbose)); 178 179 } -
trunk/wifidog-auth/wifidog/classes/Content/TrivialLangstring/TrivialLangstring.php
r1246 r1404 83 83 * @return string Returns the content 84 84 */ 85 public function __toString( $verbose = true)85 public function __toString() 86 86 { 87 $verbose = true; 87 88 return strip_tags($this->getString($verbose)); 88 89 }
