Fix off-by-one error in the "previous 200" link in category listings
[lhc/web/wiklou.git] / includes / GlobalFunctions.php
index c1908af..cb5b7fd 100644 (file)
@@ -2580,10 +2580,12 @@ function wfIsHHVM() {
 /**
  * Swap two variables
  *
+ * @deprecated since 1.24
  * @param mixed $x
  * @param mixed $y
  */
 function swap( &$x, &$y ) {
+       wfDeprecated( __FUNCTION__, '1.24' );
        $z = $x;
        $x = $y;
        $y = $z;