From: Aaron Schulz Date: Wed, 14 Mar 2007 01:05:08 +0000 (+0000) Subject: *Use constant prefix IMG, not REV X-Git-Tag: 1.31.0-rc.0~53759 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=be7849a81d30eb9ef6d16a78ee30cc4b3cf65f56;p=lhc%2Fweb%2Fwiklou.git *Use constant prefix IMG, not REV --- diff --git a/includes/Image.php b/includes/Image.php index 05b431c7dc..c4d237b076 100644 --- a/includes/Image.php +++ b/includes/Image.php @@ -2531,9 +2531,9 @@ class ThumbnailImage { /** * Aliases for backwards compatibility with 1.6 */ -define( 'MW_REV_DELETED_FILE', Image::DELETED_FILE ); -define( 'MW_REV_DELETED_COMMENT', Image::DELETED_COMMENT ); -define( 'MW_REV_DELETED_USER', Image::DELETED_USER ); -define( 'MW_REV_DELETED_RESTRICTED', Image::DELETED_RESTRICTED ); +define( 'MW_IMG_DELETED_FILE', Image::DELETED_FILE ); +define( 'MW_IMG_DELETED_COMMENT', Image::DELETED_COMMENT ); +define( 'MW_IMG_DELETED_USER', Image::DELETED_USER ); +define( 'MW_IMG_DELETED_RESTRICTED', Image::DELETED_RESTRICTED ); ?>