Not really a bug. but for the tweak command "$keepchars" you cant use a ' . So you cant have tags like "men's shoes". It'll come out like "men39s shoes". Could this be corrected?
I tried adding a ' to the $keepchars command, it just gives me a syntax error: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/orbiwan/public_html/includes/prestart.php(66) : eval()'d code on line 16
There are two ways to do ' in there. You can use the other form of quotes around it, like $keepchars = "'"; or you can escape it with a \ like $keepchars = '\'';
I'll set the tweaks editor to automatically escape it.
Comments on Bug in tweaks.php
Experienced
Usergroup: Customer
Joined: Dec 19, 2004
Total Topics: 15
Total Comments: 54
Not really a bug. but for the tweak command "$keepchars" you cant use a ' . So you cant have tags like "men's shoes". It'll come out like "men39s shoes". Could this be corrected?
I tried adding a ' to the $keepchars command, it just gives me a syntax error: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/orbiwan/public_html/includes/prestart.php(66) : eval()'d code on line 16
developer
Usergroup: Administrator
Joined: Dec 20, 2001
Location: Diamond Springs, California
Total Topics: 61
Total Comments: 7868
There are two ways to do ' in there. You can use the other form of quotes around it, like
$keepchars = "'";
or you can escape it with a \ like
$keepchars = '\'';
I'll set the tweaks editor to automatically escape it.
URL rewriting with a ' could be a problem though.
Experienced
Usergroup: Customer
Joined: Dec 19, 2004
Total Topics: 15
Total Comments: 54
ah, that's true. thnx