
10-28-2007, 03:40 PM
|
 |
|
|
Join Date: Nov 2005
Location: Winnipeg, MB
Posts: 996
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by rungok
In your xml-productfile you have to different approaches to the ' sign when putting it into the database. The second approach does not work and produces something like:
Let &epos;em Ride
The approach that works:
$query = "INSERT INTO casino_settings (settingname, switch1, switch2) VALUES ('gamename', 6, 'Texas Hold \'em')";
The approach that does not work:
$query = "INSERT INTO casino_settings (settingname, switch1, switch2) VALUES ('gamename', 7, 'Let 9;em Ride')";
So you should use the first method on both games for your nest release. Not a big deal though. I just changed the title in the database myself, but that's not easy for everyone.
|
Newest version does do that, but won't update existing settings.
|