All my php file has is:
PHP Code:
<?php
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
@set_time_limit(0);
// #################### PRE-CACHE TEMPLATES AND DATA ######################
$phrasegroups = array('style');
$specialtemplates = array('products');
// ########################## REQUIRE BACK-END ############################
require_once('./global.php');
require_once(DIR . '/includes/adminfunctions_template.php');
print_cp_header();
// ######################## CHECK ADMIN PERMISSIONS #######################
if (!can_administer('canadminstyles'))
{
print_cp_no_permission();
}
print_form_header('myscript');
print_table_header('MySpace Profile Add-On Options');
print_radio_row('MySpace Profiles Enabled?', 'inputname', array( 'yes' => 'Yes',
'no' => 'No' ));
print_radio_row('If Yes, Which Profile Layout?', 'inputname', array( 'profile 1' => 'Old Profile Layout',
'profile 2' => 'New Profile Layout' ));
print_submit_row("Submit");
print_cp_footer();
?>
there is no template edits yet