index.php 230 B

12345678
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. require_once '../main/inc/global.inc.php';
  4. $id = isset($_GET['id']) ? intval($_GET['id']) : null;
  5. $url = Certificate::getCertificatePublicURL($id);
  6. header("Location: $url");
  7. exit;