summaryrefslogtreecommitdiff
path: root/idiorm.php
diff options
context:
space:
mode:
authorSimon Holywell <[email protected]>2012-11-28 10:44:18 +0000
committerSimon Holywell <[email protected]>2012-11-28 10:48:02 +0000
commit2237d7371c26013740ae479ccf1f3cc8c57fd1fa (patch)
tree55e3d319b8fdf93457d0483e881432f1b9322250 /idiorm.php
parent5091b82652ccb974c79d1ba903fad2c681cee458 (diff)
Remove 5.3 static call. Closes issue #78
Diffstat (limited to 'idiorm.php')
-rw-r--r--idiorm.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/idiorm.php b/idiorm.php
index 7dbf9af..9d1f8c4 100644
--- a/idiorm.php
+++ b/idiorm.php
@@ -1417,7 +1417,7 @@
* @return string
*/
public static function str_replace_outside_quotes($search, $replace, $subject) {
- return static::value($subject)->replace_outside_quotes($search, $replace);
+ return self::value($subject)->replace_outside_quotes($search, $replace);
}
/**