Posted: Sun 13. Aug 2006, 02:50
You best look AGAIN ! There is ABSOLUTELY no difference... except the missing "r" .
The phpwcms support forum will help to find answers to your questions. The small but strong community is here since more than 10 years.
https://forum.phpwcms.org/
Code: Select all
function buildGlobalGET($return = '') {
// build internal array containing all GET values
// and remove session from this array
$GLOBALS['_getVar'] = array();
if(isset($_GET) && session_id()) {
unset($_GET[session_name()]);
$GLOBALS['_getVar'] = $_GET;
}
if($return == 'getQuery') {
return returnGlobalGET_QueryString('htmlentities');
}
}
DeXXus, this is not the same code for me, left side is original function buildGlobalGET code from 20060807_phpwcms_1.2.8.zip and right side is Oliver's code from the first post of this thread. ABSOLUTELY no difference except the missing "r"?DeXXus wrote:You best look AGAIN ! There is ABSOLUTELY no difference... except the missing "r" .
That will be good - at first I was stumped whyI will implement a fallback for "mb" - which always should be enabled by default.
Code: Select all
extension=php_mbstring.dll