]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Proper error message in exception
authorMikael Nordfeldth <mmn@hethane.se>
Thu, 31 Dec 2015 11:41:02 +0000 (12:41 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Thu, 31 Dec 2015 11:41:02 +0000 (12:41 +0100)
classes/Managed_DataObject.php

index 5f8445d81e641b7f595a415f185100c48bbb4580..fb18e594f99bdbb93603ca80513c865974f9d4ea 100644 (file)
@@ -371,7 +371,7 @@ abstract class Managed_DataObject extends Memcached_DataObject
             if (!array_key_exists($col, $vals)) {
                 continue;
             } elseif (is_null($vals[$col])) {
-                throw new ServerException("NULL values not allowed in getByPK for column '{$col}'");
+                throw new ServerException("NULL values not allowed in getByKeys for column '{$col}'");
             }
             $object->$col = $vals[$col];
         }