From: umherirrender Date: Fri, 3 Oct 2014 18:44:13 +0000 (+0200) Subject: Add comment to AFL_* constants in Defines.php X-Git-Tag: 1.31.0-rc.0~13688^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=d3da4ab7c2c072fd6a9c947942a1b5e5266e7227;p=lhc%2Fweb%2Fwiklou.git Add comment to AFL_* constants in Defines.php $wgAntiLockFlags was removed in Ia709ccdc9addc55c99cbff21a5ff3009b5fbb53c Change-Id: Ia8685a84b72abb1a86b70f73c3f1e9f0c3e52a8f --- diff --git a/includes/Defines.php b/includes/Defines.php index 017e9ea4da..d9e3aab588 100644 --- a/includes/Defines.php +++ b/includes/Defines.php @@ -152,12 +152,13 @@ define( 'AV_SCAN_FAILED', false ); #scan failed (scanner not found or error in /**@{ * Anti-lock flags - * See DefaultSettings.php for a description + * Was used by $wgAntiLockFlags, which was removed with 1.25 + * Constants kept to not have warnings when used in LocalSettings */ define( 'ALF_PRELOAD_LINKS', 1 ); // unused define( 'ALF_PRELOAD_EXISTENCE', 2 ); // unused -define( 'ALF_NO_LINK_LOCK', 4 ); -define( 'ALF_NO_BLOCK_LOCK', 8 ); +define( 'ALF_NO_LINK_LOCK', 4 ); // unused +define( 'ALF_NO_BLOCK_LOCK', 8 ); // unused /**@}*/ /**@{