Added SQL update which should remove \' from guild names

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8423 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
toms 2006-08-22 11:56:41 +00:00
parent 6d6d0f4000
commit c96183c9d4
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/08/22
* Added SQL update which should remove \' from guild names [Toms]
* Added option to disable character deletion of certain levels [Lupus]
check char_athena.conf for this option format
2006/08/21

View File

@ -0,0 +1 @@
update guild set name=REPLACE(name,'\\\'','\'');