|
@@ -10,7 +10,7 @@
|
|
|
|
|
|
class brands_special
|
|
|
{
|
|
|
- const publish_brands_special = 50;
|
|
|
+ const publish_brands_special = 56;
|
|
|
const local_brands_special = 50;
|
|
|
const test_brands_special = 23;
|
|
|
|
|
@@ -62,12 +62,12 @@ class brands_special
|
|
|
|
|
|
private static function special_id()
|
|
|
{
|
|
|
- if(is_localdebug()) {
|
|
|
- return self::local_brands_special;
|
|
|
- }
|
|
|
- elseif (is_pushoms()) {
|
|
|
+ if (is_pushoms()) {
|
|
|
return self::publish_brands_special;
|
|
|
}
|
|
|
+ elseif(is_localdebug()) {
|
|
|
+ return self::local_brands_special;
|
|
|
+ }
|
|
|
else {
|
|
|
return self::test_brands_special;
|
|
|
}
|