From afb668ceebf1f1f05bfdb274cfb8dbe7d83d6db5 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Wed, 8 Oct 2014 12:59:45 +0200 Subject: [PATCH] Fixed the constants are used in the collections. Ticket #1428 --- pandora_console/include/constants.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php index ba24e77458..5722ad0a75 100644 --- a/pandora_console/include/constants.php +++ b/pandora_console/include/constants.php @@ -377,7 +377,7 @@ define("CUSTOM_GRAPH_LINE", 2); define("CUSTOM_GRAPH_STACKED_LINE", 3); /* COLLECTIONS */ -define("COLLECTION_CORRECT", 0); -define("COLLECTION_PENDING_APPLY", 1); +define("COLLECTION_PENDING_APPLY", 0); +define("COLLECTION_CORRECT", 1); define("COLLECTION_ERROR_LOST_DIRECTORY", 2); ?>