Skip to content
Snippets Groups Projects
Select Git revision
  • 75eb009a464d5b306cc74c347c4e8547418e5638
  • master default protected
  • optimize-images
  • 5.0
  • 4.1
5 results

index.php

Blame
  • Forked from Digital Experience Group / UNL_Search
    251 commits behind the upstream repository.
    user avatar
    Brett Bieber authored
    75eb009a
    History
    index.php 215 B
    <?php
    
    if (!isset($_GET['u'])) {
        exit();
    }
    
    chdir(dirname(dirname(__FILE__)));
    require_once 'UNL/Autoload.php';
    
    header('Content-type:application/xml');
    echo UNL_Search_CSEGenerator::generateCSE($_GET['u']);
    
    ?>