Bandit-X.Net  
ID Password
Hacks. XooPS Hacks To The Core Or Modules.
Hacks. : Hide Hack From Xoops.Org News
Posted by Bandit-X on Sep-03-2007 (6526 reads)

I Saw This Posted At XooPS.Org And So I Adapted It To Use With Frameworks 1.20

Xoops.org| Hacks : Hidden Content Hack

Rating: 0.00 (0 votes) - Rate this News - Read More... | 2104 bytes more | Comments?
Hacks. : Using Case Insensitive BBcodes In XooPS
Posted by Bandit-X on Jan-27-2007 (2506 reads)
Hacks.

XooPS
Purpose: The Ability To Use Upper/Lower Case BBCodes In XooPS

the file is .. /class/module.textsanitizer.php

here is what the pattern should look like for img...

       $patterns[] = "/\[img]([^\"\(\)\?\&'<>]*)\[\/img\]/sUi";

..I just added an i

Info:.
http://us2.php.net/manual/en/reference.pcre.pattern.modifiers.php

Rating: 7.00 (1 vote) - Rate this News - Comments?
Hacks. : Modify siteurl BBcode to open in _self
Posted by Bandit-X on Jan-27-2007 (2674 reads)

XooPS
Purpose: Changes The siteurl BBcode to open the link in the same window

file: class/module.textsanitizer.php

        $patterns[] = "/\[siteurl=(['\"]?)([^\"'<>]*)\\1](.*)\[\/siteurl\]/sU";
        $replacements[] = '<a href="'.XOOPS_URL.'/\\2" target="_self">\\3</a>';


*"_self" was added

Rating: 9.00 (2 votes) - Rate this News - Comments?