Yup, this is what I got:
Code:
<?
##################################################################################
## ##
## Geek Gallery Popup (gpop) 4.01 ##
## installer, upgrader, uninstaller and dishwasher ##
## You could be scolded and publicly humiliated by altering or stealing my code##
## Copyright 2005 by The Geek. Code may not be used in whole ##
## or part without my written permission. You may not distribute this ##
## or any of my files without my written permission. If you do, ##
## you could face imprisonment on some desolate island far from civilization ##
## dweeb. ##
## This pretty box for example is mine. If you copy or modify this pretty box, ##
## my suits will be on you like... well - like suits. Only poorly tailored ##
## cheap suits. People may make fun of you for such cheap suits. ##
## ##
## geek-gallery-popup.php ##
## Last file chage 22.10.05 ##
## ##
## Copyright ?2005 vBGeek. All Rights Reserved. ##
## This file may not be redistributed in whole or significant part. ##
## http://www.thevbgeek.com ##
##################################################################################
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'Geek-Gallery');
// ######################### REQUIRE BACK-END ############################
$globaltemplates = array(
'geek-photo-popup',
'geek-photo-row'
);
$phrasegroups = array('Geek_Gallery_Popup');
$specialtemplates = array(
'gallery_c_cache',
'gal_mod_cache',
'adv_gallery_opt',
'gallery_ugroups');
require_once('./global.php');
thanks