idfilter.php 258 B

123456789101112
  1. <?php
  2. if (! defined("CONFIG")) die("Not defined");
  3. if (empty($id) and !empty($_SESSION[$page_url]['id'])) { $id = $_SESSION[$page_url]['id']; }
  4. if (empty($id)) {
  5. header("Location: /admin/index.php");
  6. exit;
  7. }
  8. $_SESSION[$page_url]['id']=$id;
  9. ?>