File "qrcode.inc.php"

Full Path: /srv/www/www.cadoro.it/src/controllers/qrcode.inc.php
File size: 242 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
  $qrcode = models\Qrcode::get_by_uniqid($uniqid);
  if (!$qrcode || !_published($qrcode['published'], $qrcode['date_begin'], $qrcode['date_end'], true)) {
    not_found();
  }

  header("Location: " . $qrcode['landing'] );
  exit;

?>