From 5c7f81c55f00cc968162449eae3e799f160bfdcf Mon Sep 17 00:00:00 2001 From: Matteo Nastasi Date: Wed, 1 Aug 2012 13:03:17 +0200 Subject: [PATCH] placing constants name enclosed between quotes --- web/briskin5/Obj/placing.phh | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/web/briskin5/Obj/placing.phh b/web/briskin5/Obj/placing.phh index 01ee168..0b31b2b 100644 --- a/web/briskin5/Obj/placing.phh +++ b/web/briskin5/Obj/placing.phh @@ -23,18 +23,18 @@ */ -define(TOP_NUM, 10); -define(TRI_LIMIT, (90 * 24 * 60 * 60)); -define(TRI_MIN_GAMES, 70); -define(TRI_MAX_GAMES, 140); - -define(MON_LIMIT, (30 * 24 * 60 * 60)); -define(MON_MIN_GAMES, 35); -define(MON_MAX_GAMES, 70); - -define(WEE_LIMIT, (7 * 24 * 60 * 60)); -define(WEE_MIN_GAMES, 10); -define(WEE_MAX_GAMES, 35); +define('TOP_NUM', 10); +define('TRI_LIMIT', (90 * 24 * 60 * 60)); +define('TRI_MIN_GAMES', 70); +define('TRI_MAX_GAMES', 140); + +define('MON_LIMIT', (30 * 24 * 60 * 60)); +define('MON_MIN_GAMES', 35); +define('MON_MAX_GAMES', 70); + +define('WEE_LIMIT', (7 * 24 * 60 * 60)); +define('WEE_MIN_GAMES', 10); +define('WEE_MAX_GAMES', 35); class Ptsgam { -- 2.17.1