X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Flibs%2Fobjectcache%2FRedisBagOStuff.php;h=583ec37755cd8053185abb23375ceb69ceec7a69;hp=d852f82ea5a190d5a5f58b7f2c1c7c3948f8926d;hb=c584722cc2e3d33edae58d46c2149063b3fc6d72;hpb=57eaa2bf04ce1b48bd89c10defe4de5b7d31f047 diff --git a/includes/libs/objectcache/RedisBagOStuff.php b/includes/libs/objectcache/RedisBagOStuff.php index d852f82ea5..583ec37755 100644 --- a/includes/libs/objectcache/RedisBagOStuff.php +++ b/includes/libs/objectcache/RedisBagOStuff.php @@ -321,7 +321,7 @@ class RedisBagOStuff extends BagOStuff { */ protected function serialize( $data ) { // Serialize anything but integers so INCR/DECR work - // Do not store integer-like strings as integers to avoid type confusion (bug 60563) + // Do not store integer-like strings as integers to avoid type confusion (T62563) return is_int( $data ) ? $data : serialize( $data ); }