From: jeroendedauw Date: Fri, 6 Jul 2012 11:10:47 +0000 (+0200) Subject: Fixed cp error in method name X-Git-Tag: 1.31.0-rc.0~23120^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=0a57c014baff42a5fd55a3cd2bc42689a6c5d008;p=lhc%2Fweb%2Fwiklou.git Fixed cp error in method name Change-Id: Idf5a397773418ee85ea17bcd3e3cbbf16d1a57b5 --- diff --git a/includes/db/ORMTable.php b/includes/db/ORMTable.php index 951456270a..130fdf9ba6 100644 --- a/includes/db/ORMTable.php +++ b/includes/db/ORMTable.php @@ -628,7 +628,7 @@ abstract class ORMTable implements IORMTable { * @return IORMRow */ public function newFromDBResult( stdClass $result ) { - return self::newRowFromFromDBResult( $result ); + return self::newRowFromDBResult( $result ); } /**