[small important bugfix] for 1.2.8 2006/08/07

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

You best look AGAIN ! There is ABSOLUTELY no difference... except the missing "r" . :wink:
User avatar
Oliver Georgi
Site Admin
Posts: 9907
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post by Oliver Georgi »

No, not really ;-)

But for the coming release it will be:

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');
	}
}
Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
Goran
Posts: 81
Joined: Thu 27. Nov 2003, 11:43
Location: Zagreb, Croatia
Contact:

Post by Goran »

Thanks Oliver.

DeXXus wrote:You best look AGAIN ! There is ABSOLUTELY no difference... except the missing "r" . :wink:
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"?

Image
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

:oops: I owe =YOU= the *BIGGEST* apology!!! I'M SORRY! :oops:

I had to re-download the original archive and see (then *noticed* -my- copy had a newer date of creation (because I had already pasted OliverG's whole block - instead of just the "r").

I deserve to be "ridiculed" for not doing the proper homework and then blaring out criticism to you. :twisted:

PLEASE accept my *SINCEREST* apology and know that I REGRET my actions, TOTALLY!! :roll:

I will understand and endure your wrath... with hopes to make it up wherever I can, down the road here in the forum. :(
Goran
Posts: 81
Joined: Thu 27. Nov 2003, 11:43
Location: Zagreb, Croatia
Contact:

Post by Goran »

DeXXus man, I'm not really offended by any of your words, don't worry. :)
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

Good! I am a RICHER man with one -more- FRIEND! :lol:
User avatar
jsw_nz
Posts: 907
Joined: Fri 2. Apr 2004, 02:42
Location: New Zealand

Post by jsw_nz »

I will implement a fallback for "mb" - which always should be enabled by default.
That will be good - at first I was stumped why
search wasn't returning results.

after uncommenting:

Code: Select all

extension=php_mbstring.dll
in php.ini - (as mentioned), restarting Apache

all was good to go....

DeXXus - you have more than few friends dude :D
Post Reply