Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release/1.9.15'
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartherbert committed May 4, 2015
2 parents c99b9f2 + 5482a1b commit 0999a64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project.name=Stone
project.channel=datasift.github.io/pear
project.majorVersion=1
project.minorVersion=9
project.patchLevel=14
project.patchLevel=15
project.snapshot=false

checkstyle.standard=Zend
Expand Down
2 changes: 1 addition & 1 deletion src/php/DataSift/Stone/ComparisonLib/ComparitorBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public function getComparitorFor($value)
$type = gettype($value);

// work out the classname we need
$className = __NAMESPACE__ . '\\' . ucfirst($type) . 'Comparitor';
$className = __NAMESPACE__ . '\\' . ucfirst(strtolower($type)) . 'Comparitor';

// do we have one?
if (!class_exists($className)) {
Expand Down

0 comments on commit 0999a64

Please sign in to comment.