Skip to content

Commit

Permalink
Remove 5.3 static call. Closes issue j4mie#78
Browse files Browse the repository at this point in the history
  • Loading branch information
treffynnon committed Nov 28, 2012
1 parent 5091b82 commit 2237d73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ Features
Changelog
---------

#### 1.2.3 - release 2012-11-28

* Fix issue #78 - remove use of PHP 5.3 static call

#### 1.2.2 - release 2012-11-15

* Fix bug where input parameters were sent as part-indexed, part associative
Expand Down
2 changes: 1 addition & 1 deletion idiorm.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit 2237d73

Please sign in to comment.