42868d70
andryeyev
Создал GIT
|
1
2
3
4
5
6
7
8
9
10
|
<?php
if(isset($_POST['product_id']) && count($_POST['product_id'])){
$hits = (isset($_POST['hit_id']) && count($_POST['hit_id'])) ? $_POST['hit_id'] : false;
$objCatalogs->productsIsHits2($_POST,$hits);
header("location:" . URL . "admin.php?action={$rule['action']}&modAction=products&modAction=akcii");
}
$objCatalogs->viewProductsHitsAll2();
$objCatalogs->displayAkcii();
?>
|