diff --git a/misc/phpcheck/incfile.php b/misc/phpcheck/incfile.php index d441537117e4e81e44f0d9543e260bc441d3a503..8e39c04f294a408180a779c894fe706f2c77e89a 100755 --- a/misc/phpcheck/incfile.php +++ b/misc/phpcheck/incfile.php @@ -32,6 +32,11 @@ class t3lib_div { /** * Abstraction method which returns System Environment Variables regardless of server OS, CGI/MODULE version etc. Basically this is SERVER variables for most of them. * This should be used instead of getEnv() and HTTP_SERVER_VARS/ENV_VARS to get reliable values for all situations. + * + * Usage: 226 + * + * @param string Name of the "environment variable"/"server variable" you wish to use. Valid values are SCRIPT_NAME, SCRIPT_FILENAME, REQUEST_URI, PATH_INFO, REMOTE_ADDR, REMOTE_HOST, HTTP_REFERER, HTTP_HOST, HTTP_USER_AGENT, HTTP_ACCEPT_LANGUAGE, QUERY_STRING, TYPO3_DOCUMENT_ROOT, TYPO3_HOST_ONLY, TYPO3_HOST_ONLY, TYPO3_REQUEST_HOST, TYPO3_REQUEST_URL, TYPO3_REQUEST_SCRIPT, TYPO3_REQUEST_DIR, TYPO3_SITE_URL, _ARRAY + * @return string Value based on the input key, independent of server/os environment. */ function getIndpEnv($getEnvName) { global $HTTP_SERVER_VARS; @@ -59,7 +64,7 @@ class t3lib_div { URI______: REQUEST_URI = [path]?[query] = /typo3/32/temp/phpcheck/index.php/arg1/arg2/arg3/?arg1,arg2,arg3&p1=parameter1&p2[key]=value HTTP_HOST = [host][:[port]] = 192.168.1.4:8080 - SCRIPT_NAME = [path_script]++ = /typo3/32/temp/phpcheck/index.php // NOTICE THAT SCRIPT_NAME will return the php-script name ALSO. [path_script] may not do that (eg. "/somedir/" may result in SCRIPT_NAME "/somedir/index.php")! + SCRIPT_NAME = [path_script]++ = /typo3/32/temp/phpcheck/index.php // NOTICE THAT SCRIPT_NAME will return the php-script name ALSO. [path_script] may not do that (eg. '/somedir/' may result in SCRIPT_NAME '/somedir/index.php')! PATH_INFO = [path_info] = /arg1/arg2/arg3/ QUERY_STRING = [query] = arg1,arg2,arg3&p1=parameter1&p2[key]=value HTTP_REFERER = [scheme]://[host][:[port]][path] = http://192.168.1.4:8080/typo3/32/temp/phpcheck/index.php/arg1/arg2/arg3/?arg1,arg2,arg3&p1=parameter1&p2[key]=value @@ -72,16 +77,16 @@ class t3lib_div { HTTP_ACCEPT_LANGUAGE = (client accept language) SERVER____: - SCRIPT_FILENAME = Absolute filename of script (Differs between windows/unix). On windows "C:\\blabla\\blabl\\" will be converted to "C:/blabla/blabl/" + SCRIPT_FILENAME = Absolute filename of script (Differs between windows/unix). On windows 'C:\\blabla\\blabl\\' will be converted to 'C:/blabla/blabl/' Special extras: TYPO3_HOST_ONLY = [host] = 192.168.1.4 TYPO3_PORT = [port] = 8080 (blank if 80, taken from host value) TYPO3_REQUEST_HOST = [scheme]://[host][:[port]] - TYPO3_REQUEST_URL = [scheme]://[host][:[port]][path]?[query] (sheme will by default be "http" until we can detect if it's https - + TYPO3_REQUEST_URL = [scheme]://[host][:[port]][path]?[query] (sheme will by default be 'http' until we can detect if it's https - TYPO3_REQUEST_SCRIPT = [scheme]://[host][:[port]][path_script] TYPO3_REQUEST_DIR = [scheme]://[host][:[port]][path_dir] - TYPO3_SITE_URL = [scheme]://[host][:[port]][path_dir] of the Typo3 website + TYPO3_SITE_URL = [scheme]://[host][:[port]][path_dir] of the TYPO3 website TYPO3_DOCUMENT_ROOT = Absolute path of root of documents: TYPO3_DOCUMENT_ROOT.SCRIPT_NAME = SCRIPT_FILENAME (typically) Notice: [fragment] is apparently NEVER available to the script! @@ -90,94 +95,95 @@ class t3lib_div { Testing suggestions: - Output all the values. - In the script, make a link to the script it self, maybe add some parameters and click the link a few times so HTTP_REFERER is seen - - ALSO TRY the script from the ROOT of a site (like "http://www.mytest.com/" and not "http://www.mytest.com/test/" !!) + - ALSO TRY the script from the ROOT of a site (like 'http://www.mytest.com/' and not 'http://www.mytest.com/test/' !!) */ - + +# if ($getEnvName=='HTTP_REFERER') return ''; switch((string)$getEnvName) { - case "SCRIPT_NAME": - return php_sapi_name()=="cgi" ? $HTTP_SERVER_VARS["PATH_INFO"] : $HTTP_SERVER_VARS["SCRIPT_NAME"]; + case 'SCRIPT_NAME': + return php_sapi_name()=='cgi' ? $HTTP_SERVER_VARS['PATH_INFO'] : $HTTP_SERVER_VARS['SCRIPT_NAME']; break; - case "SCRIPT_FILENAME": - return str_replace('//','/', str_replace('\\','/', php_sapi_name()=="cgi"||php_sapi_name()=="isapi" ? $HTTP_SERVER_VARS["PATH_TRANSLATED"]:$HTTP_SERVER_VARS["SCRIPT_FILENAME"])); + case 'SCRIPT_FILENAME': + return str_replace('//','/', str_replace('\\','/', php_sapi_name()=='cgi'||php_sapi_name()=='isapi' ? $HTTP_SERVER_VARS['PATH_TRANSLATED']:$HTTP_SERVER_VARS['SCRIPT_FILENAME'])); break; - case "REQUEST_URI": - // Typical application of REQUEST_URI is return urls, forms submitting to itselt etc. Eg: returnUrl=".rawurlencode(t3lib_div::getIndpEnv("REQUEST_URI")) - if (!$HTTP_SERVER_VARS["REQUEST_URI"]) { // This is for ISS/CGI which does not have the REQUEST_URI available. - return "/".ereg_replace("^/","",t3lib_div::getIndpEnv("SCRIPT_NAME")). - ($HTTP_SERVER_VARS["QUERY_STRING"]?"?".$HTTP_SERVER_VARS["QUERY_STRING"]:""); - } else return $HTTP_SERVER_VARS["REQUEST_URI"]; + case 'REQUEST_URI': + // Typical application of REQUEST_URI is return urls, forms submitting to itselt etc. Eg: returnUrl='.rawurlencode(t3lib_div::getIndpEnv('REQUEST_URI')) + if (!$HTTP_SERVER_VARS['REQUEST_URI']) { // This is for ISS/CGI which does not have the REQUEST_URI available. + return '/'.ereg_replace('^/','',t3lib_div::getIndpEnv('SCRIPT_NAME')). + ($HTTP_SERVER_VARS['QUERY_STRING']?'?'.$HTTP_SERVER_VARS['QUERY_STRING']:''); + } else return $HTTP_SERVER_VARS['REQUEST_URI']; break; - case "PATH_INFO": - // $HTTP_SERVER_VARS["PATH_INFO"]!=$HTTP_SERVER_VARS["SCRIPT_NAME"] is necessary because some servers (Windows/CGI) are seen to set PATH_INFO equal to script_name - // Further, there must be at least one "/" in the path - else the PATH_INFO value does not make sense. - // IF "PATH_INFO" never works for our purpose in Typo3 with CGI-servers, then 'php_sapi_name()=="cgi"' might be a better check. Right now strcmp($HTTP_SERVER_VARS["PATH_INFO"],t3lib_div::getIndpEnv("SCRIPT_NAME")) will always return false for CGI-versions, but that is only as long as SCRIPT_NAME is set equal to PATH_INFO because of php_sapi_name()=="cgi" (see above) -// if (strcmp($HTTP_SERVER_VARS["PATH_INFO"],t3lib_div::getIndpEnv("SCRIPT_NAME")) && count(explode("/",$HTTP_SERVER_VARS["PATH_INFO"]))>1) { - if (php_sapi_name()!="cgi") { - return $HTTP_SERVER_VARS["PATH_INFO"]; - } else return ""; + case 'PATH_INFO': + // $HTTP_SERVER_VARS['PATH_INFO']!=$HTTP_SERVER_VARS['SCRIPT_NAME'] is necessary because some servers (Windows/CGI) are seen to set PATH_INFO equal to script_name + // Further, there must be at least one '/' in the path - else the PATH_INFO value does not make sense. + // IF 'PATH_INFO' never works for our purpose in TYPO3 with CGI-servers, then 'php_sapi_name()=='cgi'' might be a better check. Right now strcmp($HTTP_SERVER_VARS['PATH_INFO'],t3lib_div::getIndpEnv('SCRIPT_NAME')) will always return false for CGI-versions, but that is only as long as SCRIPT_NAME is set equal to PATH_INFO because of php_sapi_name()=='cgi' (see above) +// if (strcmp($HTTP_SERVER_VARS['PATH_INFO'],t3lib_div::getIndpEnv('SCRIPT_NAME')) && count(explode('/',$HTTP_SERVER_VARS['PATH_INFO']))>1) { + if (php_sapi_name()!='cgi') { + return $HTTP_SERVER_VARS['PATH_INFO']; + } else return ''; break; // These are let through without modification - case "REMOTE_ADDR": - case "REMOTE_HOST": - case "HTTP_REFERER": - case "HTTP_HOST": - case "HTTP_USER_AGENT": - case "HTTP_ACCEPT_LANGUAGE": - case "QUERY_STRING": + case 'REMOTE_ADDR': + case 'REMOTE_HOST': + case 'HTTP_REFERER': + case 'HTTP_HOST': + case 'HTTP_USER_AGENT': + case 'HTTP_ACCEPT_LANGUAGE': + case 'QUERY_STRING': return $HTTP_SERVER_VARS[$getEnvName]; break; - case "TYPO3_DOCUMENT_ROOT": - // Some CGI-versions (LA13CGI) and mod-rewrite rules on MODULE versions will deliver a "wrong" DOCUMENT_ROOT (according to our description). Further various aliases/mod_rewrite rules can disturb this as well. + case 'TYPO3_DOCUMENT_ROOT': + // Some CGI-versions (LA13CGI) and mod-rewrite rules on MODULE versions will deliver a 'wrong' DOCUMENT_ROOT (according to our description). Further various aliases/mod_rewrite rules can disturb this as well. // Therefore the DOCUMENT_ROOT is now always calculated as the SCRIPT_FILENAME minus the end part shared with SCRIPT_NAME. - $SFN = t3lib_div::getIndpEnv("SCRIPT_FILENAME"); - $SN_A = explode("/",strrev(t3lib_div::getIndpEnv("SCRIPT_NAME"))); - $SFN_A = explode("/",strrev($SFN)); + $SFN = t3lib_div::getIndpEnv('SCRIPT_FILENAME'); + $SN_A = explode('/',strrev(t3lib_div::getIndpEnv('SCRIPT_NAME'))); + $SFN_A = explode('/',strrev($SFN)); $acc=array(); while(list($kk,$vv)=each($SN_A)) { if (!strcmp($SFN_A[$kk],$vv)) { $acc[]=$vv; } else break; } - $commonEnd=strrev(implode("/",$acc)); - if (strcmp($commonEnd,"")) $DR = substr($SFN,0,-(strlen($commonEnd)+1)); + $commonEnd=strrev(implode('/',$acc)); + if (strcmp($commonEnd,'')) $DR = substr($SFN,0,-(strlen($commonEnd)+1)); return $DR; break; - case "TYPO3_HOST_ONLY": - $p=explode(":",$HTTP_SERVER_VARS["HTTP_HOST"]); + case 'TYPO3_HOST_ONLY': + $p=explode(':',$HTTP_SERVER_VARS['HTTP_HOST']); return $p[0]; break; - case "TYPO3_PORT": - $p=explode(":",$HTTP_SERVER_VARS["HTTP_HOST"]); + case 'TYPO3_PORT': + $p=explode(':',$HTTP_SERVER_VARS['HTTP_HOST']); return $p[1]; break; - case "TYPO3_REQUEST_HOST": - return "http".($HTTP_SERVER_VARS["SSL_SESSION_ID"]?"s":"")."://". // I hope this: ($HTTP_SERVER_VARS["SSL_SESSION_ID"]?"s":"") - is sufficient to detect https... - $HTTP_SERVER_VARS["HTTP_HOST"]; + case 'TYPO3_REQUEST_HOST': + return 'http'.($HTTP_SERVER_VARS['SSL_SESSION_ID']?'s':'').'://'. // I hope this: ($HTTP_SERVER_VARS['SSL_SESSION_ID']?'s':'') - is sufficient to detect https... + $HTTP_SERVER_VARS['HTTP_HOST']; break; - case "TYPO3_REQUEST_URL": - return t3lib_div::getIndpEnv("TYPO3_REQUEST_HOST").t3lib_div::getIndpEnv("REQUEST_URI"); + case 'TYPO3_REQUEST_URL': + return t3lib_div::getIndpEnv('TYPO3_REQUEST_HOST').t3lib_div::getIndpEnv('REQUEST_URI'); break; - case "TYPO3_REQUEST_SCRIPT": - return t3lib_div::getIndpEnv("TYPO3_REQUEST_HOST").t3lib_div::getIndpEnv("SCRIPT_NAME"); + case 'TYPO3_REQUEST_SCRIPT': + return t3lib_div::getIndpEnv('TYPO3_REQUEST_HOST').t3lib_div::getIndpEnv('SCRIPT_NAME'); break; - case "TYPO3_REQUEST_DIR": - return t3lib_div::getIndpEnv("TYPO3_REQUEST_HOST").t3lib_div::dirname(t3lib_div::getIndpEnv("SCRIPT_NAME"))."/"; + case 'TYPO3_REQUEST_DIR': + return t3lib_div::getIndpEnv('TYPO3_REQUEST_HOST').t3lib_div::dirname(t3lib_div::getIndpEnv('SCRIPT_NAME')).'/'; break; - case "TYPO3_SITE_URL": - if (defined("PATH_thisScript") && defined("PATH_site")) { - $lPath = substr(dirname(PATH_thisScript),strlen(PATH_site))."/"; - $url = t3lib_div::getIndpEnv("TYPO3_REQUEST_DIR"); + case 'TYPO3_SITE_URL': + if (defined('PATH_thisScript') && defined('PATH_site')) { + $lPath = substr(dirname(PATH_thisScript),strlen(PATH_site)).'/'; + $url = t3lib_div::getIndpEnv('TYPO3_REQUEST_DIR'); $siteUrl = substr($url,0,-strlen($lPath)); - if (substr($siteUrl,-1)!="/") $siteUrl.="/"; + if (substr($siteUrl,-1)!='/') $siteUrl.='/'; return $siteUrl; - } else return ""; + } else return ''; break; - case "_ARRAY": + case '_ARRAY': $out=array(); // Here, list ALL possible keys to this function for debug display. - $envTestVars = t3lib_div::trimExplode(","," + $envTestVars = t3lib_div::trimExplode(',',' HTTP_HOST, TYPO3_HOST_ONLY, TYPO3_PORT, @@ -196,7 +202,7 @@ class t3lib_div { REMOTE_ADDR, REMOTE_HOST, HTTP_USER_AGENT, - HTTP_ACCEPT_LANGUAGE",1); + HTTP_ACCEPT_LANGUAGE',1); reset($envTestVars); while(list(,$v)=each($envTestVars)) { $out[$v]=t3lib_div::getIndpEnv($v); @@ -206,6 +212,7 @@ class t3lib_div { break; } } + } function view_array($array_in) { @@ -261,7 +268,7 @@ define("PATH_thisScript", */ define("PATH_thisScript",str_replace('//','/', str_replace('\\','/', php_sapi_name()=="cgi"||php_sapi_name()=="isapi" ? $HTTP_SERVER_VARS["PATH_TRANSLATED"]:$HTTP_SERVER_VARS["SCRIPT_FILENAME"]))); - +define('PATH_site', dirname(PATH_thisScript).'/'); if (count($HTTP_GET_VARS) || $HTTP_SERVER_VARS["HTTP_REFERER"]) { @@ -317,12 +324,11 @@ if (count($HTTP_GET_VARS) || $HTTP_SERVER_VARS["HTTP_REFERER"]) { echo "Cookie 'test_script_cookie': '<strong>".$HTTP_COOKIE_VARS["test_script_cookie"]."</strong>'<BR>"; - - echo '<HR><a name="link1"></a>'; echo '<div style="border: 1px solid black; padding: 10px 10px 10px 10px;"><h3>What to do now?</h3> <p>1) Click this link above once more: <a href="index.php?arg1,arg2,arg3&p1=parameter1&p2[key]='.substr(md5(time()),0,4).'#link1">Go to this page again.</a><BR> 2) Then save this HTML-page and send it to kasper@typo3.com with information about 1) which webserver (Apache/ISS), 2) Unix/Windows, 3) CGI or module (ISAPI)<br> + 2a) You might help us find any differences in your values to this <a href="reference.html" target="_blank">reference example</a> by comparing the values before you send the result (thanks). <br> 3) If you are really advanced you try and click the link below here. With CGI-versions of servers it will most likely give an error page. If it does not, please send the output to me as well (save HTML-page and send to kasper@typo3.com). If you do this PATH_INFO test, please let me know.<br><br> diff --git a/t3lib/class.t3lib_admin.php b/t3lib/class.t3lib_admin.php index be3f95c29a856040e1e7aa178719e0000f0f17d5..cb3d69c91ed9a6654a617d85fd3618dfd6f53eb4 100644 --- a/t3lib/class.t3lib_admin.php +++ b/t3lib/class.t3lib_admin.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_arraybrowser.php b/t3lib/class.t3lib_arraybrowser.php index 311f6ee9d6530b35fe7b95b6120831f32fb8c9f9..825625cebbca7fd7ff04a017038eb5813acfd2ee 100644 --- a/t3lib/class.t3lib_arraybrowser.php +++ b/t3lib/class.t3lib_arraybrowser.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_basicfilefunc.php b/t3lib/class.t3lib_basicfilefunc.php index 5f0aa838511ed9ab091b3e7f27c9b360654da46c..e5d9138073ee8b6d1c8416e0e375a435cc38ddda 100644 --- a/t3lib/class.t3lib_basicfilefunc.php +++ b/t3lib/class.t3lib_basicfilefunc.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_bedisplaylog.php b/t3lib/class.t3lib_bedisplaylog.php index e82bd139cc0222ae1c2c6bef98ca76ee9ce28de2..956afe7bc81eff192d6385df0c742f6b41a39344 100644 --- a/t3lib/class.t3lib_bedisplaylog.php +++ b/t3lib/class.t3lib_bedisplaylog.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_befunc.php b/t3lib/class.t3lib_befunc.php index 88fa3c2d6c6316586c2c8ba50d5c9c54f5564004..d095ee9eb04a8163ca9ad4d0183bfc3a5d2a97df 100755 --- a/t3lib/class.t3lib_befunc.php +++ b/t3lib/class.t3lib_befunc.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_beuserauth.php b/t3lib/class.t3lib_beuserauth.php index 52e0dbefcfb54765eb6f1d0f87609972ddb1cb43..aa8d63013eff5121d369a4d5d43ae87413e73e3b 100644 --- a/t3lib/class.t3lib_beuserauth.php +++ b/t3lib/class.t3lib_beuserauth.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_browsetree.php b/t3lib/class.t3lib_browsetree.php index 2edd53daaacc585aba420c0e17c0a96e85864058..f625719d4b654a2c7f3232b1d6e4d6278f4d82b7 100755 --- a/t3lib/class.t3lib_browsetree.php +++ b/t3lib/class.t3lib_browsetree.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_clipboard.php b/t3lib/class.t3lib_clipboard.php index 51e13aaf213799482d6ec911abdd7ef148558fec..b76c5ae40c88fa0c8c6c12b0fba2034a086506a3 100755 --- a/t3lib/class.t3lib_clipboard.php +++ b/t3lib/class.t3lib_clipboard.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_cs.php b/t3lib/class.t3lib_cs.php index e679831f2fe62f4fe0728d860aa15382f0fca011..234cbb6ee72ae22a543348afe523a8bbdf5954de 100755 --- a/t3lib/class.t3lib_cs.php +++ b/t3lib/class.t3lib_cs.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 2003-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the Typo3 project. The Typo3 project is diff --git a/t3lib/class.t3lib_diff.php b/t3lib/class.t3lib_diff.php index dd4d980961729af0705ba5346b229bb2b96b2724..00b67f6e756e9e97949ded8c6ff15c837fde144c 100755 --- a/t3lib/class.t3lib_diff.php +++ b/t3lib/class.t3lib_diff.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_div.php b/t3lib/class.t3lib_div.php index 3fb9ded8373af75954e02d2d9d6d81e0c249ba57..54940216fc90fd5f2c7570cd816f9292d9d989d2 100755 --- a/t3lib/class.t3lib_div.php +++ b/t3lib/class.t3lib_div.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_dmailer.php b/t3lib/class.t3lib_dmailer.php index 9a25dac7326a1f136b4a5eda65af23dcef2fcaff..99389179654d7c02cc8754cbbb81a654789f4362 100755 --- a/t3lib/class.t3lib_dmailer.php +++ b/t3lib/class.t3lib_dmailer.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_exec.php b/t3lib/class.t3lib_exec.php index a98dd71d2121eef7512f7c43b37a9b799bff8038..8f58d28898bb1814dd3e95a18f348671508e98c1 100755 --- a/t3lib/class.t3lib_exec.php +++ b/t3lib/class.t3lib_exec.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 2002-2003 René Fritz (r.fritz@colorcube.de) +* (c) 2002-2004 René Fritz (r.fritz@colorcube.de) * All rights reserved * * This script is part of the Typo3 project. The Typo3 project is diff --git a/t3lib/class.t3lib_extfilefunc.php b/t3lib/class.t3lib_extfilefunc.php index 8bf9f0d983193ba5a5f8ac04de5462cfd449243b..f587158b514b9c3fb7764237053c5c76972ba876 100755 --- a/t3lib/class.t3lib_extfilefunc.php +++ b/t3lib/class.t3lib_extfilefunc.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_extmgm.php b/t3lib/class.t3lib_extmgm.php index 94a3b9c6306b6617cddf57b5d28faa65889a8368..a0485fc9d74722c9e24d2505d43fac2f322ca17f 100644 --- a/t3lib/class.t3lib_extmgm.php +++ b/t3lib/class.t3lib_extmgm.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_extobjbase.php b/t3lib/class.t3lib_extobjbase.php index ff21b0a75e1256ae8fe950802217ac55f77527f9..d2fec51684eb8dd7f3a11fc96e53e2fbdd38d80a 100755 --- a/t3lib/class.t3lib_extobjbase.php +++ b/t3lib/class.t3lib_extobjbase.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_foldertree.php b/t3lib/class.t3lib_foldertree.php index 2613b2cef16ff067f027ccc2cdaac9f93f709634..8c6cf3c98490973b67085d23c4d87fcdf9930699 100755 --- a/t3lib/class.t3lib_foldertree.php +++ b/t3lib/class.t3lib_foldertree.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2002 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_formmail.php b/t3lib/class.t3lib_formmail.php index 873f063dd66cfb5ed53efb2cad324e0ff67f666b..f3846baf93ea628062f4395d87a319f9498b1b43 100644 --- a/t3lib/class.t3lib_formmail.php +++ b/t3lib/class.t3lib_formmail.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_fullsearch.php b/t3lib/class.t3lib_fullsearch.php index 09cf987b444e859e3fc1fa1429e7995b5d08694f..5e46402d2ed9d486e4f6453362167265ac430e35 100755 --- a/t3lib/class.t3lib_fullsearch.php +++ b/t3lib/class.t3lib_fullsearch.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_htmlmail.php b/t3lib/class.t3lib_htmlmail.php index 83bec74651cc8d9fbda2f73e8d60e5276967f5d3..7de2255ddd95dcd3411ad40aedbcaa056fcc2c19 100755 --- a/t3lib/class.t3lib_htmlmail.php +++ b/t3lib/class.t3lib_htmlmail.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_iconworks.php b/t3lib/class.t3lib_iconworks.php index 7a345306d7bf2ab172545caed6106d933e00f2ca..cf2340e06eb69b17b944889525a11a4adb89907a 100755 --- a/t3lib/class.t3lib_iconworks.php +++ b/t3lib/class.t3lib_iconworks.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_install.php b/t3lib/class.t3lib_install.php index 2c323cc93dce9273269c997a7d29191070b9d192..a89a842a34a2c122215c2a4afa55b2294567715e 100755 --- a/t3lib/class.t3lib_install.php +++ b/t3lib/class.t3lib_install.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_loaddbgroup.php b/t3lib/class.t3lib_loaddbgroup.php index 19ff970763882c5d8f3dccb0ae702fe9c1c693c8..e17d4ed073ceb80342cca9d26bc581d0ea3b8d4f 100755 --- a/t3lib/class.t3lib_loaddbgroup.php +++ b/t3lib/class.t3lib_loaddbgroup.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_loadmodules.php b/t3lib/class.t3lib_loadmodules.php index f5422159310e448bdde91a2fa5d4db9aa46c18ee..dbc9434f19f7c29ecf3a16e185939cf8464fcfed 100644 --- a/t3lib/class.t3lib_loadmodules.php +++ b/t3lib/class.t3lib_loadmodules.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_matchcondition.php b/t3lib/class.t3lib_matchcondition.php index 5b1170b7be373006767b65b3fc9b30d608ffa566..17bcfbe24d1c4ffdffd806b40fceb03bddaa13fc 100644 --- a/t3lib/class.t3lib_matchcondition.php +++ b/t3lib/class.t3lib_matchcondition.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_modsettings.php b/t3lib/class.t3lib_modsettings.php index 414f6c7c1e9ea6e23ce407f50ad35768a2598e26..28d2293e459894ebd3e1944fafc762b033e2a1f6 100755 --- a/t3lib/class.t3lib_modsettings.php +++ b/t3lib/class.t3lib_modsettings.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_page.php b/t3lib/class.t3lib_page.php index f5d26f2d03ce80bb777cef82cb4c341362499506..a13b01d7d04d9d7b68c27d21d1408ca67d365456 100755 --- a/t3lib/class.t3lib_page.php +++ b/t3lib/class.t3lib_page.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_pagetree.php b/t3lib/class.t3lib_pagetree.php index f18c6ed3fb76acfe1e8a207d0428c0b943547bdb..84855c802e1ca788d47ba5bd23fb64c30428de42 100755 --- a/t3lib/class.t3lib_pagetree.php +++ b/t3lib/class.t3lib_pagetree.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_parsehtml.php b/t3lib/class.t3lib_parsehtml.php index b5d5420567fe9c4d8e2806eb05f3f92e199c1c6c..1889ff2bfbbfb3133f493dcbb7c7516f786f1611 100644 --- a/t3lib/class.t3lib_parsehtml.php +++ b/t3lib/class.t3lib_parsehtml.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_parsehtml_proc.php b/t3lib/class.t3lib_parsehtml_proc.php index 8a92f39b416dad1cd33bd75a11a0fb255c33335b..790cccf3b26965bc63906428de2b2e7ebf272865 100755 --- a/t3lib/class.t3lib_parsehtml_proc.php +++ b/t3lib/class.t3lib_parsehtml_proc.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_positionmap.php b/t3lib/class.t3lib_positionmap.php index c9a3c070012b4778e1c75489aa7674102b78603b..19343767e2358d37166b716e0e70e9cd087109ea 100755 --- a/t3lib/class.t3lib_positionmap.php +++ b/t3lib/class.t3lib_positionmap.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_querygenerator.php b/t3lib/class.t3lib_querygenerator.php index fabfaa3295ec7ea9e74acde3926cf6d1de316aa9..63d86ca75453721c3c840f12e819c4a581aab43c 100755 --- a/t3lib/class.t3lib_querygenerator.php +++ b/t3lib/class.t3lib_querygenerator.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 2001-2003 Christian Jul Jensen (christian@typo3.com) +* (c) 2001-2004 Christian Jul Jensen (christian@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_readmail.php b/t3lib/class.t3lib_readmail.php index cb849e69510080726c7809a8d67781142536fdde..3d61b8b26da899dfd1637ca4663d03535e2fbc7e 100755 --- a/t3lib/class.t3lib_readmail.php +++ b/t3lib/class.t3lib_readmail.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_recordlist.php b/t3lib/class.t3lib_recordlist.php index a100b515224962b035a79f531e69fe28d8fd5a99..11e737b7df061297ad3dff48410df0d7502faaaa 100755 --- a/t3lib/class.t3lib_recordlist.php +++ b/t3lib/class.t3lib_recordlist.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_scbase.php b/t3lib/class.t3lib_scbase.php index de12f98bb285577ee5e772f7f102c59ba519f3db..df930ac434f9eba017e1d7c52fedfff2366503ed 100644 --- a/t3lib/class.t3lib_scbase.php +++ b/t3lib/class.t3lib_scbase.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_stdgraphic.php b/t3lib/class.t3lib_stdgraphic.php index aff6968ae47f1c03cdb01fcb3c6fbba35c8d42bf..8d3b13b404e4c1a5c41ff5c3acaa9a151fa63e64 100644 --- a/t3lib/class.t3lib_stdgraphic.php +++ b/t3lib/class.t3lib_stdgraphic.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_superadmin.php b/t3lib/class.t3lib_superadmin.php index 33577dbbe315cab00b36a14f8f06ade489233eab..e7f2d7ec692763dca31495bcc42ab52ecc150b10 100755 --- a/t3lib/class.t3lib_superadmin.php +++ b/t3lib/class.t3lib_superadmin.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_svbase.php b/t3lib/class.t3lib_svbase.php index 4cb7e413f36ed23c2cebb4dd0a2e8c86dff56d0f..a014f74eedb39d6568ea811bdd0f15a533c04656 100755 --- a/t3lib/class.t3lib_svbase.php +++ b/t3lib/class.t3lib_svbase.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the Typo3 project. The Typo3 project is diff --git a/t3lib/class.t3lib_syntaxhl.php b/t3lib/class.t3lib_syntaxhl.php index cc0eb2acff7fbb15b41bc740713738643c017ac7..d5b0176cc0d1013fa6a9b4e3c4f71b56eab69b34 100644 --- a/t3lib/class.t3lib_syntaxhl.php +++ b/t3lib/class.t3lib_syntaxhl.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_tceforms.php b/t3lib/class.t3lib_tceforms.php index 6caaf8ed006d2719f69a35648ee64a78577a2555..ce98e041ced8e88cc9d76ddb44bad820faa72b75 100755 --- a/t3lib/class.t3lib_tceforms.php +++ b/t3lib/class.t3lib_tceforms.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_tcemain.php b/t3lib/class.t3lib_tcemain.php index 12ebaa048f9b6ac161f8c788dd73e4cf2c647875..85683a7fd4246adca40cd880134b135215b41e20 100755 --- a/t3lib/class.t3lib_tcemain.php +++ b/t3lib/class.t3lib_tcemain.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_timetrack.php b/t3lib/class.t3lib_timetrack.php index c1a655b0f134d8728efd6a75f8720a0e12fa22f9..a37f03326fb55a10923ca352bb5eb71d58a2eb99 100755 --- a/t3lib/class.t3lib_timetrack.php +++ b/t3lib/class.t3lib_timetrack.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_transferdata.php b/t3lib/class.t3lib_transferdata.php index 52171124f949d7e7dc3605a5d65b539ddcd9f7c0..12bb080e446c3e8ca6e52be71a2ff001b39e9940 100755 --- a/t3lib/class.t3lib_transferdata.php +++ b/t3lib/class.t3lib_transferdata.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_treeview.php b/t3lib/class.t3lib_treeview.php index 85780fc17cc1c0744af6d37a81809cf22fcfd25f..90f22df37a8197b4ee3d5f349d9384f314907d7c 100755 --- a/t3lib/class.t3lib_treeview.php +++ b/t3lib/class.t3lib_treeview.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2002 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_tsfebeuserauth.php b/t3lib/class.t3lib_tsfebeuserauth.php index 210f819b6277ffbc10cda11143e4fd12dce61464..c94bfd51586856a48fd5410edddec5cc58d51131 100755 --- a/t3lib/class.t3lib_tsfebeuserauth.php +++ b/t3lib/class.t3lib_tsfebeuserauth.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_tsparser.php b/t3lib/class.t3lib_tsparser.php index b497ae90c88492c5e4e9e645f5c1f15328a974d8..833dc3b9a672f65cfc4e98da62de803da2bc4f86 100755 --- a/t3lib/class.t3lib_tsparser.php +++ b/t3lib/class.t3lib_tsparser.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_tsparser_ext.php b/t3lib/class.t3lib_tsparser_ext.php index a5adfb1ff9be49c7c32219a3d879262813734e28..a8982761e2d9e3ebba827a71ef453facd424f388 100755 --- a/t3lib/class.t3lib_tsparser_ext.php +++ b/t3lib/class.t3lib_tsparser_ext.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_tsstyleconfig.php b/t3lib/class.t3lib_tsstyleconfig.php index 4768c889fdc3cee15c1aed1e56a3ccd57ac2d2b9..3c73837eb30c9d88b0855d8fcdd00dd1b15a78d6 100755 --- a/t3lib/class.t3lib_tsstyleconfig.php +++ b/t3lib/class.t3lib_tsstyleconfig.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_tstemplate.php b/t3lib/class.t3lib_tstemplate.php index f8b2a215ac464af8984bd876661233ef58136580..3a666b065e65c8c1e49ba669328a3e2e7733f85b 100755 --- a/t3lib/class.t3lib_tstemplate.php +++ b/t3lib/class.t3lib_tstemplate.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_userauth.php b/t3lib/class.t3lib_userauth.php index c7fcf7aa8c4535949adbc8f8a7f93a187e30b62c..a42c09914b4a1a5ec3b8dfa1dea0c39e90390d86 100755 --- a/t3lib/class.t3lib_userauth.php +++ b/t3lib/class.t3lib_userauth.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_userauthgroup.php b/t3lib/class.t3lib_userauthgroup.php index 38890affc505e0610098aff3e5800fc62b339ceb..b16330d48903534d6a1a5167ae84e0c50585c4ab 100755 --- a/t3lib/class.t3lib_userauthgroup.php +++ b/t3lib/class.t3lib_userauthgroup.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/class.t3lib_xml.php b/t3lib/class.t3lib_xml.php index 8eb151d490a8bf874db50aa4f3a19d6e6b79e8f7..c5d31db095bc8aac2c5c96f5060f7548a4d4809d 100755 --- a/t3lib/class.t3lib_xml.php +++ b/t3lib/class.t3lib_xml.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/stddb/tables.php b/t3lib/stddb/tables.php index d301a403c01ab7c179939bd91f14b100e8b04cb7..ce17c642d70bcdd13663780b2a5e9cde19b7c026 100755 --- a/t3lib/stddb/tables.php +++ b/t3lib/stddb/tables.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/stddb/tbl_be.php b/t3lib/stddb/tbl_be.php index 0179ae4da701fda2d5f8f48c9fcbc3ebf7a9b5f1..dd34b00637dd73f1111a41955b4a6bd8a26da980 100755 --- a/t3lib/stddb/tbl_be.php +++ b/t3lib/stddb/tbl_be.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/t3lib/thumbs.php b/t3lib/thumbs.php index e94c7addf4c891fa65da5d5b9bbe3f4ed3fe6b14..d8285cc03f1a2c2a78ed2ef414026bcbbdc8af13 100755 --- a/t3lib/thumbs.php +++ b/t3lib/thumbs.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is @@ -63,7 +63,7 @@ error_reporting (E_ALL ^ E_NOTICE); // ****************** define('TYPO3_OS', stristr(PHP_OS,'win')&&!stristr(PHP_OS,'darwin')?'WIN':''); define('TYPO3_MODE','BE'); -define('PATH_thisScript',str_replace('//','/', str_replace('\\','/', php_sapi_name()=='cgi'||php_sapi_name()=='isapi' ? $HTTP_SERVER_VARS['PATH_TRANSLATED']:$HTTP_SERVER_VARS['SCRIPT_FILENAME']))); +define('PATH_thisScript',str_replace('//','/', str_replace('\\','/', php_sapi_name()=='cgi'||php_sapi_name()=='isapi'||php_sapi_name()=='cgi-fcgi' ? $HTTP_SERVER_VARS['PATH_TRANSLATED']:$HTTP_SERVER_VARS['SCRIPT_FILENAME']))); define('PATH_site', ereg_replace('[^/]*.[^/]*$','',PATH_thisScript)); // the path to the website folder (see init.php) define('PATH_typo3conf', PATH_site.'typo3conf/'); diff --git a/typo3/alt_clickmenu.php b/typo3/alt_clickmenu.php index 1609c6fc63f744b454e4a69103e9cca87dc9ebed..7d87f32b62022bf4debb5fcf83fd71be0c528bde 100755 --- a/typo3/alt_clickmenu.php +++ b/typo3/alt_clickmenu.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/alt_db_navframe.php b/typo3/alt_db_navframe.php index 9fae98d284cea12b626f36e22e9f1a429eb26fb9..48e60e2d4c3298362682c6d51bd5cb005351ab82 100755 --- a/typo3/alt_db_navframe.php +++ b/typo3/alt_db_navframe.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/alt_doc.php b/typo3/alt_doc.php index 01e19176569ff898bbe3b00cfa0272c2566562d1..ac89e810b644b1299570e76eef423d1b67cf84a3 100755 --- a/typo3/alt_doc.php +++ b/typo3/alt_doc.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/alt_doc_nodoc.php b/typo3/alt_doc_nodoc.php index aef192ad9bedfcfeb21609cee0c9a930a7fae254..6411e26f38850ee1d082ac664645275a7759b5cd 100755 --- a/typo3/alt_doc_nodoc.php +++ b/typo3/alt_doc_nodoc.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/alt_file_navframe.php b/typo3/alt_file_navframe.php index 065cfd8f3b013467ea2a281f518f8e553c09446d..16a537993dd127579d063fd957ee1d81e3a45d0e 100755 --- a/typo3/alt_file_navframe.php +++ b/typo3/alt_file_navframe.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/alt_intro.php b/typo3/alt_intro.php index a3572939a0b7746e60d5d64a5a60bee51f15ea73..1e2e18c7eab90fcda039b2a616f3fbbd8d7af71b 100755 --- a/typo3/alt_intro.php +++ b/typo3/alt_intro.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/alt_main.php b/typo3/alt_main.php index 7134ae43810d3637a73b83e9d0ce5be0fa69ac7a..925dac8c587519e82896ec616829fbec835c21cd 100755 --- a/typo3/alt_main.php +++ b/typo3/alt_main.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/alt_menu.php b/typo3/alt_menu.php index af7ca7a95143ce1dafa967f83be63ae56c3ceff8..6c5a2760ac82d684c3871ca0bfeed8e19ab5cd5a 100755 --- a/typo3/alt_menu.php +++ b/typo3/alt_menu.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/alt_menu_sel.php b/typo3/alt_menu_sel.php index cd5b73d4e90e299c546d552a5d3a6443df18b2f8..8090d227c565dfdbba20c10fb13b186c1b62e869 100755 --- a/typo3/alt_menu_sel.php +++ b/typo3/alt_menu_sel.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/alt_mod_frameset.php b/typo3/alt_mod_frameset.php index 4f2dd20df3949fe08edd480fc3332f6aab96d8fb..f8b0ad70ad1f8ee7b0fc50eeeba07d04d0ac1425 100755 --- a/typo3/alt_mod_frameset.php +++ b/typo3/alt_mod_frameset.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/alt_palette.php b/typo3/alt_palette.php index a1d0e568318f47455ebb391ec4873a6563fe7b74..ae70b71e441dc18b3875395bb247f94bf590b470 100755 --- a/typo3/alt_palette.php +++ b/typo3/alt_palette.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/alt_shortcut.php b/typo3/alt_shortcut.php index 8209e1bf92b150589470b36a4df8ad794d51aeec..0cc347e6fe2d7514cbe5c6ac06bc8eb6ee6bcf1a 100755 --- a/typo3/alt_shortcut.php +++ b/typo3/alt_shortcut.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/alt_toplogo.php b/typo3/alt_toplogo.php index 8dafc71f2258cf749e4777a574c679f4cb386d4d..923f1b6a9a3ca8e67bcb9e342346f380a7babf90 100755 --- a/typo3/alt_toplogo.php +++ b/typo3/alt_toplogo.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/alt_topmenu_dummy.php b/typo3/alt_topmenu_dummy.php index d3b88a77f43de1f53c8e8c840d36987805bc2562..c025f38a2319a975266f02762cf3d7af61d76ee6 100755 --- a/typo3/alt_topmenu_dummy.php +++ b/typo3/alt_topmenu_dummy.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/browse_links.php b/typo3/browse_links.php index a76c339bfc322136c010e0fbd81e304e57275a0d..058538e8a2b5ce156a8022de965327f5dc78523b 100755 --- a/typo3/browse_links.php +++ b/typo3/browse_links.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/browser.php b/typo3/browser.php index aaf2f25e2e41675158f77ee2c547298deee51faa..47b7930d5375f6a3e3fad03e1e1769adfe4a72cb 100644 --- a/typo3/browser.php +++ b/typo3/browser.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/class.alt_menu_functions.inc b/typo3/class.alt_menu_functions.inc index ce5e20bec00a5d4c9767574aaeca0da18382cb75..244ce121736d339ae02a1d906e276cec202587fe 100755 --- a/typo3/class.alt_menu_functions.inc +++ b/typo3/class.alt_menu_functions.inc @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/class.db_list.inc b/typo3/class.db_list.inc index fec60a26178a32fb4eb1ec7d884548b828864b87..63addcc27e8204670ee6e2fcd9cc12065dbeec04 100755 --- a/typo3/class.db_list.inc +++ b/typo3/class.db_list.inc @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/class.db_list_extra.inc b/typo3/class.db_list_extra.inc index 8752bbeebfc00b0335583e892f84e5a48eaa7c14..7b5ec3356afb29818326c8a6a0134a8245275219 100755 --- a/typo3/class.db_list_extra.inc +++ b/typo3/class.db_list_extra.inc @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/class.file_list.inc b/typo3/class.file_list.inc index 20185be8081b52ffab656aba515bf6bc147f097a..338ef4c993f694a444a558d00a92ba0edde43848 100755 --- a/typo3/class.file_list.inc +++ b/typo3/class.file_list.inc @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/class.show_rechis.inc b/typo3/class.show_rechis.inc index 7e6b7738090e4494cd643171f9f59c006e5f15bc..9f25af9a5b0fff12a0ff62ee6b013ab245c9192c 100755 --- a/typo3/class.show_rechis.inc +++ b/typo3/class.show_rechis.inc @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/db_list.php b/typo3/db_list.php index ec34c0ce47b0b1454077cc5e2838d44005d8489d..fdc1e4e725da99fc35ea537196d0b6adb6f172e5 100755 --- a/typo3/db_list.php +++ b/typo3/db_list.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/db_new.php b/typo3/db_new.php index b64adf2b2f5799555effba9070501d4aa3d1e918..297b7c4f08f84d839a3cc949f39368e3e3161b0c 100755 --- a/typo3/db_new.php +++ b/typo3/db_new.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/dev/dump_template_tables.php b/typo3/dev/dump_template_tables.php index e10fd711e980456fe2201a78e70c0b0ef5f602d9..072b6e1e35add201699327b6798eccc32d20c426 100755 --- a/typo3/dev/dump_template_tables.php +++ b/typo3/dev/dump_template_tables.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/dev/phpinfo.php b/typo3/dev/phpinfo.php index af5b7ff909f41a74060d0c8980b2f6fc531487d9..09ab419f8a52fd3980a076dd7b100cef446c018e 100755 --- a/typo3/dev/phpinfo.php +++ b/typo3/dev/phpinfo.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/dummy.php b/typo3/dummy.php index 7700ea78088aab552a3e65b077ed634af42f6b6c..7a3e2661b5df54b21cd935663e170590b3f92f0e 100755 --- a/typo3/dummy.php +++ b/typo3/dummy.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/file_edit.php b/typo3/file_edit.php index 5cb9666e340b45f17e7910f0b7942363b00bb1dc..b60917822c4235587c7102e5c16bdd4ccb80f19e 100755 --- a/typo3/file_edit.php +++ b/typo3/file_edit.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/file_list.php b/typo3/file_list.php index 10f49d5c5c9ff339b7a8a0910641eaf95ce78add..db7470ba1e2770f9736e89771a58b0d9f96b9ceb 100755 --- a/typo3/file_list.php +++ b/typo3/file_list.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/file_newfolder.php b/typo3/file_newfolder.php index 5adc1af2bad648e447bf540a1c8ee9fae20bcc60..175216be8500f81cde90684762436d8bf1ad1287 100755 --- a/typo3/file_newfolder.php +++ b/typo3/file_newfolder.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/file_rename.php b/typo3/file_rename.php index 41f3942f1bb41f5895441c0f9918bafa67010f4d..04b1047df4de06146e191f4febba6dda3aca057c 100755 --- a/typo3/file_rename.php +++ b/typo3/file_rename.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/file_upload.php b/typo3/file_upload.php index 7ca7f68f91b1cd0065d44e6b6d06df24d68e8fc1..bf66d931d6d9de8d20de9aad9ba69606034def96 100755 --- a/typo3/file_upload.php +++ b/typo3/file_upload.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/index.php b/typo3/index.php index 862747a34373189f9214dd684c71bb3c8a6285a3..e26b0c89eeb7ed94e917e029b5fcd5f7f75a6a18 100755 --- a/typo3/index.php +++ b/typo3/index.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/index_re.php b/typo3/index_re.php index efef8e9332d0625f3690eab4b98e4a11dfd9e03d..c64cf16517879831f0a98011c7ca0f63136f8464 100755 --- a/typo3/index_re.php +++ b/typo3/index_re.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/init.php b/typo3/init.php index 0211ef46c61e6b8db9cdcab363493fa3d4c601a3..8b2bc3642842ee146c7d891c1518651cd5f802bd 100755 --- a/typo3/init.php +++ b/typo3/init.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is @@ -69,7 +69,7 @@ error_reporting (E_ALL ^ E_NOTICE); // ******************************* define('TYPO3_OS', stristr(PHP_OS,'win')&&!stristr(PHP_OS,'darwin')?'WIN':''); define('TYPO3_MODE','BE'); -define('PATH_thisScript',str_replace('//','/', str_replace('\\','/', php_sapi_name()=='cgi'||php_sapi_name()=='isapi' ? $HTTP_SERVER_VARS['PATH_TRANSLATED']:$HTTP_SERVER_VARS['SCRIPT_FILENAME']))); +define('PATH_thisScript',str_replace('//','/', str_replace('\\','/', php_sapi_name()=='cgi'||php_sapi_name()=='isapi'||php_sapi_name()=='cgi-fcgi' ? $HTTP_SERVER_VARS['PATH_TRANSLATED']:$HTTP_SERVER_VARS['SCRIPT_FILENAME']))); define('TYPO3_mainDir', 'typo3/'); // This is the directory of the backend administration for the sites of this TYPO3 installation. diff --git a/typo3/install/index.php b/typo3/install/index.php index 02a2a074538680823c5998a5202d1c1c9cd9d49f..bfa9632c9063094700becbf56240fb720d0e0d55 100755 --- a/typo3/install/index.php +++ b/typo3/install/index.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/listframe_loader.php b/typo3/listframe_loader.php index 302bbe23358b5f0878821213908e71c176beafbe..03491b7f2d1b897e553713207ea11568d82ef323 100755 --- a/typo3/listframe_loader.php +++ b/typo3/listframe_loader.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/login_frameset.php b/typo3/login_frameset.php index 7afb4333e887a4a10d00b0083bac053cf5e72de7..f8b4b5777d200f5854e7ff74b037a40133365978 100755 --- a/typo3/login_frameset.php +++ b/typo3/login_frameset.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/logout.php b/typo3/logout.php index cfcc9a8ce6f263eeb8e6f3c1a0fcd16957d2e56f..f2823c92d4f25cd0e2c6a20f2bfed6fc41a085c0 100755 --- a/typo3/logout.php +++ b/typo3/logout.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/mod/help/about/index.php b/typo3/mod/help/about/index.php index deaa5f31b2e8e617d6857a953387ac41e84558c1..a835e10c9f24124511e2eca708f1a0be611256fa 100755 --- a/typo3/mod/help/about/index.php +++ b/typo3/mod/help/about/index.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/mod/tools/em/class.kickstarter.php b/typo3/mod/tools/em/class.kickstarter.php index d4d71d1132d3387b3721134c671d5e04e7db4817..41b81abe4e22cb724fbf5bf39cb06bf11a0d96dc 100755 --- a/typo3/mod/tools/em/class.kickstarter.php +++ b/typo3/mod/tools/em/class.kickstarter.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/mod/tools/em/index.php b/typo3/mod/tools/em/index.php index 60e15ed4077b6ee69216b2bb7c8515697b8c4654..9091434dff643cc4b2a9a7c40d8aedeb3f583490 100755 --- a/typo3/mod/tools/em/index.php +++ b/typo3/mod/tools/em/index.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/mod/web/func/index.php b/typo3/mod/web/func/index.php index d18f6ca342dda5201a9cc1b97859a8e0738e37ee..407f4c9b3b6079328b4a51967c210ad19301cd6e 100755 --- a/typo3/mod/web/func/index.php +++ b/typo3/mod/web/func/index.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/mod/web/info/index.php b/typo3/mod/web/info/index.php index 95084b61daa99347c5676f5003c330be856b2899..fc06d28018200062d9c28e8491c38d97c1f138a5 100755 --- a/typo3/mod/web/info/index.php +++ b/typo3/mod/web/info/index.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/mod/web/perm/index.php b/typo3/mod/web/perm/index.php index e5459c3647f753685a6cc469dca5b1cdeb2ae334..9a5ad26325d233694ab76a46897df4897dab3305 100755 --- a/typo3/mod/web/perm/index.php +++ b/typo3/mod/web/perm/index.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/move_el.php b/typo3/move_el.php index 0b3753764f00266efc660d2945a7507fc68de137..3f1830903e8a36ee102ab00ed7c65052995efb66 100755 --- a/typo3/move_el.php +++ b/typo3/move_el.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/show_item.php b/typo3/show_item.php index d5148fc27197f946d5cddf2ff18645865d20e237..0c716a02de793faf651c9f4a59166af54df19576 100755 --- a/typo3/show_item.php +++ b/typo3/show_item.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/show_rechis.php b/typo3/show_rechis.php index 06f5d58cac7b02337f65f5fcceb4b6bb78a2866d..040bdd2d4862cc1001c966b2e7a8b33d7d165b0c 100755 --- a/typo3/show_rechis.php +++ b/typo3/show_rechis.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/layout/class.tx_cms_layout.php b/typo3/sysext/cms/layout/class.tx_cms_layout.php index 20678f427cbbed6495eb0b1bf420f0f11fc663f2..25e58a5f9d79105c7beefba1defa8f60f29b58bc 100755 --- a/typo3/sysext/cms/layout/class.tx_cms_layout.php +++ b/typo3/sysext/cms/layout/class.tx_cms_layout.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/layout/db_layout.php b/typo3/sysext/cms/layout/db_layout.php index 815eb137a9584c7742ca6057d582b3fcd8d685b8..53f74be8b9e0c3c37df5b1a03a224b102d7d4761 100755 --- a/typo3/sysext/cms/layout/db_layout.php +++ b/typo3/sysext/cms/layout/db_layout.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/layout/db_new_content_el.php b/typo3/sysext/cms/layout/db_new_content_el.php index dd64ef5407a9a3bae42d2d7246bfb4a00da7b8cf..203885e5f027483ababc2e97cffe43670e389aee 100644 --- a/typo3/sysext/cms/layout/db_new_content_el.php +++ b/typo3/sysext/cms/layout/db_new_content_el.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tbl_cms.php b/typo3/sysext/cms/tbl_cms.php index b427c2f9365cac1ead3482ec7f9df7532043d49a..a90abe78e3905ff5df82562bf6aabbb579caf72e 100755 --- a/typo3/sysext/cms/tbl_cms.php +++ b/typo3/sysext/cms/tbl_cms.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tbl_tt_content.php b/typo3/sysext/cms/tbl_tt_content.php index c68bf57d92cfb223ddb21cb180ece4daa45d843d..9be946b264b0c28af52b668595a0954c720ea6b2 100755 --- a/typo3/sysext/cms/tbl_tt_content.php +++ b/typo3/sysext/cms/tbl_tt_content.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/class.tslib_content.php b/typo3/sysext/cms/tslib/class.tslib_content.php index 7628165ddccc32d894f45ac10be62ec730c572ef..4efeb526a56d57a86174f60f98af6be6a167742a 100755 --- a/typo3/sysext/cms/tslib/class.tslib_content.php +++ b/typo3/sysext/cms/tslib/class.tslib_content.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/class.tslib_fe.php b/typo3/sysext/cms/tslib/class.tslib_fe.php index af5386436c0e07968c2b93f44abfc2e8031b0d82..6504222b2046eeab42512b2ebd10d51934a02e15 100755 --- a/typo3/sysext/cms/tslib/class.tslib_fe.php +++ b/typo3/sysext/cms/tslib/class.tslib_fe.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/class.tslib_fetce.php b/typo3/sysext/cms/tslib/class.tslib_fetce.php index fcebbd9d7f77f2d91ce52307c5a155c0c611459a..0f25696b9233dc8e62f583ed344249a9445c01a5 100644 --- a/typo3/sysext/cms/tslib/class.tslib_fetce.php +++ b/typo3/sysext/cms/tslib/class.tslib_fetce.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/class.tslib_feuserauth.php b/typo3/sysext/cms/tslib/class.tslib_feuserauth.php index 05125418d48c02ecaf175ef1fffd547e0035ab9b..905300928a38f7d3bc9e4650136ef222b90458d6 100644 --- a/typo3/sysext/cms/tslib/class.tslib_feuserauth.php +++ b/typo3/sysext/cms/tslib/class.tslib_feuserauth.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/class.tslib_gifbuilder.php b/typo3/sysext/cms/tslib/class.tslib_gifbuilder.php index a826b46b5300266e3bb0fc8cd12184db3e4b9e8f..76ac54b17f06b05ec6cb7f525dfc23ff82a8e50e 100755 --- a/typo3/sysext/cms/tslib/class.tslib_gifbuilder.php +++ b/typo3/sysext/cms/tslib/class.tslib_gifbuilder.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/class.tslib_menu.php b/typo3/sysext/cms/tslib/class.tslib_menu.php index 9a97773994ace23971061521d6a08c3078d62f9d..f116993b330347dcd8ad125884a817d66559bdac 100755 --- a/typo3/sysext/cms/tslib/class.tslib_menu.php +++ b/typo3/sysext/cms/tslib/class.tslib_menu.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/class.tslib_pagegen.php b/typo3/sysext/cms/tslib/class.tslib_pagegen.php index 2448a1ff57f56498a031695b0d0d1dbbf618276f..821e26f25b7db2fd7bdef5329d848e86d6303b37 100755 --- a/typo3/sysext/cms/tslib/class.tslib_pagegen.php +++ b/typo3/sysext/cms/tslib/class.tslib_pagegen.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/class.tslib_pibase.php b/typo3/sysext/cms/tslib/class.tslib_pibase.php index cbb7e6a11f79f84c3e7d2e6e14660a175dbc227b..55c4259556580beb6b825ae3e443cbf7d768f15d 100755 --- a/typo3/sysext/cms/tslib/class.tslib_pibase.php +++ b/typo3/sysext/cms/tslib/class.tslib_pibase.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/class.tslib_search.php b/typo3/sysext/cms/tslib/class.tslib_search.php index 8d19720869885ddff0e2f6888f42979685a53758..36b9a7e1d013d130deef3d86fe5cd609942a7e21 100755 --- a/typo3/sysext/cms/tslib/class.tslib_search.php +++ b/typo3/sysext/cms/tslib/class.tslib_search.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/index_ts.php b/typo3/sysext/cms/tslib/index_ts.php index 3cfbda95e381b460c0e802b80bbbd760b71de57b..7337e40d8f68b60cd953c2fb7f6ddb74969965c7 100755 --- a/typo3/sysext/cms/tslib/index_ts.php +++ b/typo3/sysext/cms/tslib/index_ts.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is @@ -55,7 +55,7 @@ error_reporting (E_ALL ^ E_NOTICE); $TYPO3_MISC['microtime_start'] = microtime(); define('TYPO3_OS', stristr(PHP_OS,'win')&&!stristr(PHP_OS,'darwin')?'WIN':''); define('TYPO3_MODE','FE'); -define('PATH_thisScript',str_replace('//','/', str_replace('\\','/', php_sapi_name()=='cgi'||php_sapi_name()=='isapi' ? $HTTP_SERVER_VARS['PATH_TRANSLATED']:$HTTP_SERVER_VARS['SCRIPT_FILENAME']))); +define('PATH_thisScript',str_replace('//','/', str_replace('\\','/', php_sapi_name()=='cgi'||php_sapi_name()=='isapi'||php_sapi_name()=='cgi-fcgi' ? $HTTP_SERVER_VARS['PATH_TRANSLATED']:$HTTP_SERVER_VARS['SCRIPT_FILENAME']))); define('PATH_site', dirname(PATH_thisScript).'/'); define('PATH_t3lib', PATH_site.'t3lib/'); diff --git a/typo3/sysext/cms/tslib/media/scripts/example_callfunction.php b/typo3/sysext/cms/tslib/media/scripts/example_callfunction.php index e276f8fb68ad2b9357feec1985b5398b7e202ab2..13620c3e2409655627617be2bba0a57372375d74 100755 --- a/typo3/sysext/cms/tslib/media/scripts/example_callfunction.php +++ b/typo3/sysext/cms/tslib/media/scripts/example_callfunction.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/example_itemArrayProcFunc.php b/typo3/sysext/cms/tslib/media/scripts/example_itemArrayProcFunc.php index 61410532e854df00b4cfc8c867d0236e5e683097..b13e914bc5455fffc1da53372bd8d04ced8219c4 100755 --- a/typo3/sysext/cms/tslib/media/scripts/example_itemArrayProcFunc.php +++ b/typo3/sysext/cms/tslib/media/scripts/example_itemArrayProcFunc.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/example_keepRollover.php b/typo3/sysext/cms/tslib/media/scripts/example_keepRollover.php index 54b86603d0ca51a7f82b31977d06ef5dcc6601f2..44a9520357572f7f4a9e5527557cd443f602afc4 100755 --- a/typo3/sysext/cms/tslib/media/scripts/example_keepRollover.php +++ b/typo3/sysext/cms/tslib/media/scripts/example_keepRollover.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/example_languageMenu.php b/typo3/sysext/cms/tslib/media/scripts/example_languageMenu.php index 3404337e8440535ddf33da1f93b1d09bd5d94726..0776cf0833ec1ffb08b2a14ec62c962a43b4005d 100755 --- a/typo3/sysext/cms/tslib/media/scripts/example_languageMenu.php +++ b/typo3/sysext/cms/tslib/media/scripts/example_languageMenu.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/example_typolinkpop.php b/typo3/sysext/cms/tslib/media/scripts/example_typolinkpop.php index 80996d91a916292bb99876738db16b71de00186d..ae0b2befd083bd69a1a136b26736caeefcfc48fb 100755 --- a/typo3/sysext/cms/tslib/media/scripts/example_typolinkpop.php +++ b/typo3/sysext/cms/tslib/media/scripts/example_typolinkpop.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/fe_adminLib.inc b/typo3/sysext/cms/tslib/media/scripts/fe_adminLib.inc index 5366ffe3d3abaa5503a74ae846b4586284a8ac7d..5a496ef132bd9a82d51e9041648e41a6c775d58d 100755 --- a/typo3/sysext/cms/tslib/media/scripts/fe_adminLib.inc +++ b/typo3/sysext/cms/tslib/media/scripts/fe_adminLib.inc @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/freesite_dummy_page_menu.php b/typo3/sysext/cms/tslib/media/scripts/freesite_dummy_page_menu.php index dea1a4942761b5002c240c12f4a3e2e2e65bf90e..956ff26ab4b7caed91f18dd72a2c7e75fbc852d3 100755 --- a/typo3/sysext/cms/tslib/media/scripts/freesite_dummy_page_menu.php +++ b/typo3/sysext/cms/tslib/media/scripts/freesite_dummy_page_menu.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/gmenu_foldout.php b/typo3/sysext/cms/tslib/media/scripts/gmenu_foldout.php index 0c3a0ee67d6ec331adadbe29dd17207e574f373e..1d7fb9af09d12114e3500b955dffc864b5edbcc5 100755 --- a/typo3/sysext/cms/tslib/media/scripts/gmenu_foldout.php +++ b/typo3/sysext/cms/tslib/media/scripts/gmenu_foldout.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/gmenu_layers.php b/typo3/sysext/cms/tslib/media/scripts/gmenu_layers.php index 4715983dcd1d08e952fed0bc7f842ec8d096ccf2..0da9cabdd48202f018dafe66d232e6783167e4da 100644 --- a/typo3/sysext/cms/tslib/media/scripts/gmenu_layers.php +++ b/typo3/sysext/cms/tslib/media/scripts/gmenu_layers.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/makeMenu_datedirectory.inc b/typo3/sysext/cms/tslib/media/scripts/makeMenu_datedirectory.inc index d47393aa04b5e7f4c328c04e64138a2bce3d29f0..e1ea737145b55d9c003195dbc97066a5d0443854 100755 --- a/typo3/sysext/cms/tslib/media/scripts/makeMenu_datedirectory.inc +++ b/typo3/sysext/cms/tslib/media/scripts/makeMenu_datedirectory.inc @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/makeMenu_keywords_updated.inc b/typo3/sysext/cms/tslib/media/scripts/makeMenu_keywords_updated.inc index bc3274ff7a5525a768c1848af3b49baec02bd0fd..68f98d790495dfdb5eebc1338f18f0e84524f9b7 100755 --- a/typo3/sysext/cms/tslib/media/scripts/makeMenu_keywords_updated.inc +++ b/typo3/sysext/cms/tslib/media/scripts/makeMenu_keywords_updated.inc @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/plaintextLib.inc b/typo3/sysext/cms/tslib/media/scripts/plaintextLib.inc index fe42cc7c089254c87e211de7d54ab6e10ed88026..eb7fe954ed4b5a33b640058b1438cfe8bf15dd38 100644 --- a/typo3/sysext/cms/tslib/media/scripts/plaintextLib.inc +++ b/typo3/sysext/cms/tslib/media/scripts/plaintextLib.inc @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/postit.inc b/typo3/sysext/cms/tslib/media/scripts/postit.inc index 2aff5e156f134804869c60b7f141ef175db8a42a..766d67245f5a417dd9043e0fb78650a129ff2e66 100755 --- a/typo3/sysext/cms/tslib/media/scripts/postit.inc +++ b/typo3/sysext/cms/tslib/media/scripts/postit.inc @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/tmenu_layers.php b/typo3/sysext/cms/tslib/media/scripts/tmenu_layers.php index 9dd101738d2c63208ded4953f91f20aed547f35f..fdf79b6b50545c440216d2260c8ffc71da93c6f6 100644 --- a/typo3/sysext/cms/tslib/media/scripts/tmenu_layers.php +++ b/typo3/sysext/cms/tslib/media/scripts/tmenu_layers.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/wapversionLib.inc b/typo3/sysext/cms/tslib/media/scripts/wapversionLib.inc index 07ffab41990e9dc3edaa0c6afd03f40c7fbf1e69..44e5081402746288a9e18bb28037507edd73df59 100755 --- a/typo3/sysext/cms/tslib/media/scripts/wapversionLib.inc +++ b/typo3/sysext/cms/tslib/media/scripts/wapversionLib.inc @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/media/scripts/xmlversionLib.inc b/typo3/sysext/cms/tslib/media/scripts/xmlversionLib.inc index 8a3ddeb08f00cf0b0670d80fae8e6a9f584f6f91..5227579c1cf31087fe9559c1d8fbb642b15d51c1 100644 --- a/typo3/sysext/cms/tslib/media/scripts/xmlversionLib.inc +++ b/typo3/sysext/cms/tslib/media/scripts/xmlversionLib.inc @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/pagegen.php b/typo3/sysext/cms/tslib/pagegen.php index 3e3615e7d3ddfe6698baecf9b1d7b675606f5ee6..fb08f790cb4f0b32a84f11ce12018906c73ae7c3 100755 --- a/typo3/sysext/cms/tslib/pagegen.php +++ b/typo3/sysext/cms/tslib/pagegen.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/publish.php b/typo3/sysext/cms/tslib/publish.php index 8e6fdfd2da599fad1e79107078068cbd4698c2dc..eb7d22ccc4c00cb53ce0b7563b9a386bf2d1f8c1 100755 --- a/typo3/sysext/cms/tslib/publish.php +++ b/typo3/sysext/cms/tslib/publish.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/cms/tslib/showpic.php b/typo3/sysext/cms/tslib/showpic.php index ea31d2fd13b76e661a7e0d709d346ecf98d2dc7c..3f341c6f1151154e378ffa29f9670941e78a39d7 100755 --- a/typo3/sysext/cms/tslib/showpic.php +++ b/typo3/sysext/cms/tslib/showpic.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is @@ -60,7 +60,7 @@ error_reporting (E_ALL ^ E_NOTICE); // *********************** define('TYPO3_OS', stristr(PHP_OS,'win')&&!stristr(PHP_OS,'darwin')?'WIN':''); define('TYPO3_MODE','FE'); -define('PATH_thisScript',str_replace('//','/', str_replace('\\','/', php_sapi_name()=='cgi'||php_sapi_name()=='isapi' ? $HTTP_SERVER_VARS['PATH_TRANSLATED']:$HTTP_SERVER_VARS['SCRIPT_FILENAME']))); +define('PATH_thisScript',str_replace('//','/', str_replace('\\','/', php_sapi_name()=='cgi'||php_sapi_name()=='isapi'||php_sapi_name()=='cgi-fcgi' ? $HTTP_SERVER_VARS['PATH_TRANSLATED']:$HTTP_SERVER_VARS['SCRIPT_FILENAME']))); define('PATH_site', dirname(PATH_thisScript).'/'); define('PATH_t3lib', PATH_site.'t3lib/'); diff --git a/typo3/sysext/cms/web_info/class.tx_cms_webinfo.php b/typo3/sysext/cms/web_info/class.tx_cms_webinfo.php index 4a626dc59c5b9f877b6dad8f26ceb353a740d3ee..5e1b6aa57dc9159867d5b7ea56565f3e23aa9226 100644 --- a/typo3/sysext/cms/web_info/class.tx_cms_webinfo.php +++ b/typo3/sysext/cms/web_info/class.tx_cms_webinfo.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/sysext/lang/lang.php b/typo3/sysext/lang/lang.php index 702500b66ea6d1415d26aa2becaf25ccf3c95b31..10d89e2cbcf8f9e457912fcbc2dc2f97c33588e2 100755 --- a/typo3/sysext/lang/lang.php +++ b/typo3/sysext/lang/lang.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. TYPO3 is free software; diff --git a/typo3/tce_db.php b/typo3/tce_db.php index c4881e343ffb7661e2703a9fbe7e79433728282c..040b2f93b02f394a996e3baab926d6d1177d9ef6 100644 --- a/typo3/tce_db.php +++ b/typo3/tce_db.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/tce_file.php b/typo3/tce_file.php index 4aa843c49a4b579c6b9e7ced6d32e0a5bba6c047..8606f931dd5473de0e0874f41fb4c1bcb88b38a7 100755 --- a/typo3/tce_file.php +++ b/typo3/tce_file.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/template.php b/typo3/template.php index 77c1af4c5ce1ce54b920528d8f0ed68a6c2cdeab..db4a1fd0c386a06044d57cb779d5bb7cb653abf0 100755 --- a/typo3/template.php +++ b/typo3/template.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/view_help.php b/typo3/view_help.php index 105fc015621d25d17a756ab195960fdedfe04890..85165cb49a32053076226d4549530d577a5796b0 100755 --- a/typo3/view_help.php +++ b/typo3/view_help.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/wizard_add.php b/typo3/wizard_add.php index 6e6b8e026cd779cacbacb7d7202831a76a7ce0a8..fc5c0d88953533f0602b22bde308219f10af8992 100755 --- a/typo3/wizard_add.php +++ b/typo3/wizard_add.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/wizard_colorpicker.php b/typo3/wizard_colorpicker.php index aec5fd0954096c1b0d643b374463c6763e37e541..6b8ecb7b984b90de2a3abaf904089e9fa7474581 100755 --- a/typo3/wizard_colorpicker.php +++ b/typo3/wizard_colorpicker.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/wizard_edit.php b/typo3/wizard_edit.php index a1d932b279e6a0b1dd4516cbbc6d07c6914a7332..94bb2fe18e06ea3677e2cfbb92ad5a23332af2a6 100755 --- a/typo3/wizard_edit.php +++ b/typo3/wizard_edit.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/wizard_forms.php b/typo3/wizard_forms.php index dd3c8d764a0e635345b29d076bb92084b74aeec1..205a56688396b0491e240e4cd42bbaa0dc2abd1b 100755 --- a/typo3/wizard_forms.php +++ b/typo3/wizard_forms.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/wizard_list.php b/typo3/wizard_list.php index c2afb4af2520fe204070c3a982b8684a07061379..bf54e2168f46c38c45d5cc7ef781e6a6e9c26ee1 100755 --- a/typo3/wizard_list.php +++ b/typo3/wizard_list.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/wizard_rte.php b/typo3/wizard_rte.php index ea137e9309be9f2f1b0b4e81953bdc5b6dababad..2dab980ffd9d7d42f837487a690dbfff572cdd1a 100755 --- a/typo3/wizard_rte.php +++ b/typo3/wizard_rte.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/wizard_table.php b/typo3/wizard_table.php index 59cafbae8547a33ceb43e5b177ffd802dbadf192..d1ada13d5b3b1e5c9780d4c22b0a3d4dfc66423f 100755 --- a/typo3/wizard_table.php +++ b/typo3/wizard_table.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is diff --git a/typo3/wizard_tsconfig.php b/typo3/wizard_tsconfig.php index f0f1c0aab2d7c69edabd1994248d8e090b5af746..5fc2d12060e225f0fe35b3f770225e1b94da1dce 100755 --- a/typo3/wizard_tsconfig.php +++ b/typo3/wizard_tsconfig.php @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2003 Kasper Skaarhoj (kasper@typo3.com) +* (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is