r20425 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r20424‎ | r20425 | r20426 >
Date:01:05, 14 March 2007
Author:aaron
Status:old
Tags:
Comment:
*Use constant prefix IMG, not REV
Modified paths:
  • /trunk/phase3/includes/Image.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/Image.php
@@ -2531,9 +2531,9 @@
25322532 /**
25332533 * Aliases for backwards compatibility with 1.6
25342534 */
2535 -define( 'MW_REV_DELETED_FILE', Image::DELETED_FILE );
2536 -define( 'MW_REV_DELETED_COMMENT', Image::DELETED_COMMENT );
2537 -define( 'MW_REV_DELETED_USER', Image::DELETED_USER );
2538 -define( 'MW_REV_DELETED_RESTRICTED', Image::DELETED_RESTRICTED );
 2535+define( 'MW_IMG_DELETED_FILE', Image::DELETED_FILE );
 2536+define( 'MW_IMG_DELETED_COMMENT', Image::DELETED_COMMENT );
 2537+define( 'MW_IMG_DELETED_USER', Image::DELETED_USER );
 2538+define( 'MW_IMG_DELETED_RESTRICTED', Image::DELETED_RESTRICTED );
25392539
25402540 ?>