summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2014-06-04 09:47:43 +0100
committerlsces <lester@lsces.co.uk>2014-06-04 09:47:43 +0100
commit7388054290bcc490196c8bb48a8915d59a2b5f52 (patch)
tree1ba356754600511bb495c453abdd8dc3aa7105c9
parent2d64d76cb15d60cfcaf541b0906fd3db7c5e9878 (diff)
downloadrss-7388054290bcc490196c8bb48a8915d59a2b5f52.tar.gz
rss-7388054290bcc490196c8bb48a8915d59a2b5f52.tar.bz2
rss-7388054290bcc490196c8bb48a8915d59a2b5f52.zip
e_strict tidy up
-rw-r--r--feedcreator.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/feedcreator.class.php b/feedcreator.class.php
index 463c6fc..a05bf42 100644
--- a/feedcreator.class.php
+++ b/feedcreator.class.php
@@ -487,7 +487,7 @@ class FeedCreator extends HtmlDescribable {
* @param int length the maximum length the string should be truncated to
* @return string the truncated string
*/
- function iTrunc($string, $length) {
+ public static function iTrunc($string, $length) {
if (strlen($string)<=$length) {
return $string;
}