Merge "Fixed cp error in method name"
authorMaxSem <maxsem.wiki@gmail.com>
Fri, 6 Jul 2012 12:51:53 +0000 (12:51 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Fri, 6 Jul 2012 12:51:53 +0000 (12:51 +0000)
includes/db/ORMTable.php

index 9514562..130fdf9 100644 (file)
@@ -628,7 +628,7 @@ abstract class ORMTable implements IORMTable {
         * @return IORMRow
         */
        public function newFromDBResult( stdClass $result ) {
-               return self::newRowFromFromDBResult( $result );
+               return self::newRowFromDBResult( $result );
        }
 
        /**