diff options
| author | lsces <lester@lsces.co.uk> | 2014-06-04 09:47:43 +0100 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2014-06-04 09:47:43 +0100 |
| commit | 7388054290bcc490196c8bb48a8915d59a2b5f52 (patch) | |
| tree | 1ba356754600511bb495c453abdd8dc3aa7105c9 | |
| parent | 2d64d76cb15d60cfcaf541b0906fd3db7c5e9878 (diff) | |
| download | rss-7388054290bcc490196c8bb48a8915d59a2b5f52.tar.gz rss-7388054290bcc490196c8bb48a8915d59a2b5f52.tar.bz2 rss-7388054290bcc490196c8bb48a8915d59a2b5f52.zip | |
e_strict tidy up
| -rw-r--r-- | feedcreator.class.php | 2 |
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; } |
