1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 04:32:01 +02:00

charset and badchars

This commit is contained in:
marj 2009-11-12 14:30:07 +00:00
parent 9675069129
commit 806d025085
19 changed files with 271 additions and 323 deletions

View File

@ -1,21 +1,18 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/banlist_export.php,v $
| $Revision: 1.3 $
| $Date: 2008-01-16 22:18:19 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
* Banlist export
*
* $Source: /cvs_backup/e107_0.8/e107_admin/banlist_export.php,v $
* $Revision: 1.4 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
require_once("../class2.php");
if (!getperms("4"))

View File

@ -1,21 +1,18 @@
<?php
/*
+----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/check_inspector.php,v $
| $Revision: 1.1 $
| $Date: 2008-01-03 22:29:02 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/check_inspector.php,v $
* $Revision: 1.2 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
/*
This file 'authorises' the standalone file inspector mode. If it is missing, or in its default state, File Inspector can only

View File

@ -1,21 +1,18 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/credits.php,v $
| $Revision: 1.6 $
| $Date: 2009-08-28 16:11:00 $
| $Author: marj_nl_fr $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/credits.php,v $
* $Revision: 1.7 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
require_once("../class2.php");

View File

@ -1,23 +1,19 @@
<?php
/*
+----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/fileinspector.php,v $
| $Revision: 1.17 $
| $Date: 2009-08-28 16:11:00 $
| $Author: marj_nl_fr $
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/fileinspector.php,v $
* $Revision: 1.18 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
Includes standalone function - needs finishing
+----------------------------------------------------------------------------+
*/
if ($_SERVER['QUERY_STRING'] == 'alone')
{
//@TODO make multi-language if possible
@ -938,24 +934,24 @@ class file_inspector {
$data = "<?php\n";
if (!$plugin || $plugin == 'off') {
$data .= "/*\n";
$data .= "+ ----------------------------------------------------------------------------+\n";
$data .= "| e107 website system\n";
$data .= "|\n";
$data .= "| ©Steve Dunstan 2001-2002\n";
$data .= "| http://e107.org\n";
$data .= "| jalist@e107.org\n";
$data .= "|\n";
$data .= "| Released under the terms and conditions of the\n";
$data .= "| GNU General Public License (http://gnu.org).\n";
$data .= "|\n";
$data .= "| \$Source: /cvs_backup/e107_0.8/e107_admin/fileinspector.php,v $\n";
$data .= "| \$Revision: 1.17 $\n";
$data .= "| \$Date: 2009-08-28 16:11:00 $\n";
$data .= "| \$Author: marj_nl_fr $\n";
$data .= "+----------------------------------------------------------------------------+\n";
$data .= "*/\n\n";
if (!$plugin || $plugin == 'off')
{
$data .= '
/*
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $'.'Source: $
* $'.'Revision: $
* $'.'Date: $
* $'.'Author: $
*/
';
}
$data .= "if (!defined('e107_INIT')) { exit; }\n\n";

View File

@ -1,21 +1,18 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/includes/beginner.php,v $
| $Revision: 1.4 $
| $Date: 2008-12-30 15:56:12 $
| $Author: secretr $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/includes/beginner.php,v $
* $Revision: 1.5 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
if (!defined('e107_INIT')) { exit; }

View File

@ -1,21 +1,18 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/includes/cascade.php,v $
| $Revision: 1.4 $
| $Date: 2008-12-30 15:56:12 $
| $Author: secretr $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/includes/cascade.php,v $
* $Revision: 1.5 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
if (!defined('e107_INIT')) { exit; }

View File

@ -1,21 +1,18 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/includes/classis.php,v $
| $Revision: 1.4 $
| $Date: 2008-12-30 15:56:12 $
| $Author: secretr $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/includes/classis.php,v $
* $Revision: 1.5 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
if (!defined('e107_INIT')) { exit; }

View File

@ -1,21 +1,18 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/includes/combo.php,v $
| $Revision: 1.4 $
| $Date: 2008-12-30 15:56:12 $
| $Author: secretr $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/includes/combo.php,v $
* $Revision: 1.5 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
if (!defined('e107_INIT')) { exit; }

View File

@ -1,21 +1,18 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/includes/compact.php,v $
| $Revision: 1.4 $
| $Date: 2008-12-30 15:56:12 $
| $Author: secretr $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/includes/compact.php,v $
* $Revision: 1.5 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
if (!defined('e107_INIT')) { exit; }

View File

@ -1,21 +1,18 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/includes/tabbed.php,v $
| $Revision: 1.1 $
| $Date: 2009-07-04 03:08:03 $
| $Author: e107coders $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/includes/tabbed.php,v $
* $Revision: 1.2 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
if (!defined('e107_INIT')) { exit; }

View File

@ -1,21 +1,18 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/index.php,v $
| $Revision: 1.1.1.1 $
| $Date: 2006-12-02 04:33:23 $
| $Author: mcfly_e107 $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/index.php,v $
* $Revision: 1.2 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
header('Location: admin.php');
exit;

View File

@ -1,21 +1,19 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/message.php,v $
| $Revision: 1.3 $
| $Date: 2009-08-28 16:11:00 $
| $Author: marj_nl_fr $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/message.php,v $
* $Revision: 1.4 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
require_once("../class2.php");
include_lan(e_LANGUAGEDIR.e_LANGUAGE.'/admin/lan_'.e_PAGE);

View File

@ -1,21 +1,19 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/modcomment.php,v $
| $Revision: 1.9 $
| $Date: 2009-08-28 16:11:00 $
| $Author: marj_nl_fr $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/modcomment.php,v $
* $Revision: 1.10 $
* $Date: 2009-11-12 14:30:06 $
* $Author: marj_nl_fr $
*/
require_once("../class2.php");
if (!getperms("B")) {
header("location:".e_BASE."index.php");

View File

@ -1,21 +1,19 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/notify.php,v $
| $Revision: 1.9 $
| $Date: 2009-08-28 16:10:54 $
| $Author: marj_nl_fr $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/notify.php,v $
* $Revision: 1.10 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
require_once('../class2.php');
if (!getperms('O'))
{

View File

@ -1,21 +1,19 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/phpinfo.php,v $
| $Revision: 1.1.1.1 $
| $Date: 2006-12-02 04:33:27 $
| $Author: mcfly_e107 $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/phpinfo.php,v $
* $Revision: 1.2 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
require_once("../class2.php");
if (!getperms("0")) {
header("location:".e_BASE."index.php");

View File

@ -1,21 +1,19 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/sql/extended_country.php,v $
| $Revision: 1.2 $
| $Date: 2007-07-18 20:08:21 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/sql/extended_country.php,v $
* $Revision: 1.3 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
header("location:../index.php");
exit;
?>

View File

@ -1,21 +1,18 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/theme.php,v $
| $Revision: 1.5 $
| $Date: 2009-08-28 16:11:01 $
| $Author: marj_nl_fr $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/theme.php,v $
* $Revision: 1.6 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
require_once("../class2.php");
if (!getperms("1")) {

View File

@ -1,21 +1,18 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/ver.php,v $
| $Revision: 1.2 $
| $Date: 2006-12-03 01:29:33 $
| $Author: mcfly_e107 $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/ver.php,v $
* $Revision: 1.3 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
if (!defined('e107_INIT')) { exit; }

View File

@ -1,21 +1,19 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/wmessage.php,v $
| $Revision: 1.6 $
| $Date: 2009-08-28 16:11:00 $
| $Author: marj_nl_fr $
+----------------------------------------------------------------------------+
*/
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_admin/wmessage.php,v $
* $Revision: 1.7 $
* $Date: 2009-11-12 14:30:07 $
* $Author: marj_nl_fr $
*/
require_once("../class2.php");
if (!getperms("M"))
{