Skip to content

Commit

Permalink
made idiom stop throwing fatal error in 5.2
Browse files Browse the repository at this point in the history
ivannovak committed Nov 18, 2012
1 parent 5091b82 commit 351caf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion idiorm.php
Original file line number Diff line number Diff line change
@@ -1417,7 +1417,7 @@ public static function value($subject) {
* @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);
}

/**

0 comments on commit 351caf2

Please sign in to comment.