PHP Code:
<?php
error_reporting(E_ALL & ~E_NOTICE);
// global templates MUST be defined before we
// require global.php or it doesn't pre-fetch them
$globaltemplates = array(
'STANDARD_REDIRECT',
'STANDARD_ERROR',
);
require_once('./global.php');
$settings = $DB_site->query_first("
SELECT * FROM affiliates_settings
");
if($_REQUEST['do'] == 'image'){
if(empty($_REQUEST['a'])){
header('Content-type: image/gif');
readfile("$vboptions[bburl]/images/error.gif");
} else {
header('Content-type: image/gif');
readfile("$settings[imagelink]");
}
}