From: Rob Church Date: Tue, 26 Dec 2006 03:08:35 +0000 (+0000) Subject: (bug 8379) Output both source and destination titles X-Git-Tag: 1.31.0-rc.0~54765 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=779571aae55471ea0ea7c8edd1a0d80d0b99f9ef;p=lhc%2Fweb%2Fwiklou.git (bug 8379) Output both source and destination titles --- diff --git a/maintenance/moveBatch.php b/maintenance/moveBatch.php index 13a5122524..4b0abf7f13 100644 --- a/maintenance/moveBatch.php +++ b/maintenance/moveBatch.php @@ -76,7 +76,7 @@ for ( $linenum = 1; !feof( $file ); $linenum++ ) { } - print $source->getPrefixedText(); + print $source->getPrefixedText() . ' --> ' . $dest->getPrefixedText(); $dbw->begin(); $err = $source->moveTo( $dest, false, $reason ); if( $err !== true ) {