Fix version comments in thumbnail prerendering code
authorGilles Dubuc <gdubuc@wikimedia.org>
Tue, 30 Sep 2014 12:20:11 +0000 (14:20 +0200)
committerGilles Dubuc <gdubuc@wikimedia.org>
Tue, 30 Sep 2014 12:20:11 +0000 (14:20 +0200)
Change-Id: I74b52d2ecc382dfc0b55615ce512e8c64d02e9cb
Mingle: https://wikimedia.mingle.thoughtworks.com/projects/multimedia/cards/301

includes/DefaultSettings.php
includes/upload/UploadBase.php

index ea2242f..e9b5746 100644 (file)
@@ -1249,7 +1249,7 @@ $wgThumbnailMinimumBucketDistance = 50;
  *
  * This obviously means that more disk space is needed per upload upfront.
  *
- * @since 1.24
+ * @since 1.25
  */
 
 $wgUploadThumbnailRenderMap = array();
@@ -1263,14 +1263,14 @@ $wgUploadThumbnailRenderMap = array();
  * This method only works if thumbnails are configured to be rendered by a 404 handler. The latter
  * option uses the job queue to render the thumbnail.
  *
- * @since 1.24
+ * @since 1.25
  */
 $wgUploadThumbnailRenderMethod = 'jobqueue';
 
 /**
  * When using the "http" wgUploadThumbnailRenderMethod, lets one specify a custom Host HTTP header.
  *
- * @since 1.24
+ * @since 1.25
  */
 $wgUploadThumbnailRenderHttpCustomHost = false;
 
@@ -1278,7 +1278,7 @@ $wgUploadThumbnailRenderHttpCustomHost = false;
  * When using the "http" wgUploadThumbnailRenderMethod, lets one specify a custom domain to send the
  * HTTP request to.
  *
- * @since 1.24
+ * @since 1.25
  */
 $wgUploadThumbnailRenderHttpCustomDomain = false;
 
index 7741c35..eb54e58 100644 (file)
@@ -757,6 +757,8 @@ abstract class UploadBase {
 
        /**
         * Perform extra steps after a successful upload.
+        *
+        * @since  1.25
         */
        public function postProcessUpload() {
                global $wgUploadThumbnailRenderMap;