فهرست منبع

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
toms 19 سال پیش
والد
کامیت
c96183c9d4
2فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  1. 1 0
      Changelog-Trunk.txt
  2. 1 0
      sql-files/upgrade_svn8423.sql

+ 1 - 0
Changelog-Trunk.txt

@@ -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

+ 1 - 0
sql-files/upgrade_svn8423.sql

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