From 0c582fe91be5be78ae1dfe336c8ba6517cf5fe3d Mon Sep 17 00:00:00 2001 From: yupmin Date: Fri, 22 Apr 2011 15:30:00 +0900 Subject: [PATCH 01/14] =?UTF-8?q?refs=20#1574=20=20*=20warning=EC=A4=84?= =?UTF-8?q?=EC=9D=B4=EA=B8=B0=201=ED=83=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- framework/data/DBModel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/data/DBModel.php b/framework/data/DBModel.php index d675074fb..6679aeeb0 100644 --- a/framework/data/DBModel.php +++ b/framework/data/DBModel.php @@ -384,7 +384,7 @@ protected function _capsulateFields($requestedFieldArray) { protected function getQualifierModel($name, $condition, $value = null, $escape = false, $autoquote = true) { //OR, setQualifier(string(name_condition_value), $escape = null) - Descriptive mode (NOT implemented) if (is_null($condition)) { - $qualifiers = null; + $qualifiers = $relations = null; } else { switch(strtolower($condition)) { case 'equals': From 95f4f5a601e3292c7b947ed0dc32742f2e9c5774 Mon Sep 17 00:00:00 2001 From: inureyes Date: Fri, 22 Apr 2011 13:18:35 -0400 Subject: [PATCH 02/14] refs #1416 : modified : reference to private for spl_load function to static. --- framework/legacy/Needlworks.PHP.Loader.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/framework/legacy/Needlworks.PHP.Loader.php b/framework/legacy/Needlworks.PHP.Loader.php index 0270780fa..bb06f1cce 100644 --- a/framework/legacy/Needlworks.PHP.Loader.php +++ b/framework/legacy/Needlworks.PHP.Loader.php @@ -39,26 +39,26 @@ function requireLibrary($name) { /** Autoload components */ class Autoload_Legacy { - private static $db = array( + public static $db = array( 'POD','DBQuery'); - private static $data = array( + public static $data = array( 'Attachment','BlogSetting','BlogStatistics','Category','Comment','CommentNotified', 'CommentNotifiedSiteInfo','DailyStatistics','DataMaintenance','Feed', 'Filter','GuestComment','Keyword','Link','LinkCategories','Notice','PluginSetting','Post', 'RefererLog','RefererStatistics','ServiceSetting','SkinSetting','SubscriptionLog', 'SubscriptionStatistics','Tag','Trackback','TrackbackLog','UserInfo','UserSetting' ); - private static $model = array( + public static $model = array( 'Message','Paging','PluginCustomConfig','Statistics','User' ); - private static $base = array( + public static $base = array( 'Base64Stream','HTTPRequest','OutputWriter','XMLRPC','XMLRPCFault', 'XMLCustomType','XMLTree','Pop3','CommunicationFeed'); - private static $function = array( + public static $function = array( 'Image','Setting','Respond','Misc'); - private static $openid = array( + public static $openid = array( 'OpenID', 'OpenIDSession', 'OpenIDConsumer'); - private static $control = array( + public static $control = array( 'Session','RSS'); public static function load($name) { global $service, $database; @@ -87,4 +87,4 @@ public static function load($name) { } } spl_autoload_register(array('Autoload_Legacy', 'load')); -?> \ No newline at end of file +?> From c0c98928800a2bacb7f5f7f4113bef4ef33e15a7 Mon Sep 17 00:00:00 2001 From: inureyes Date: Fri, 22 Apr 2011 13:32:21 -0400 Subject: [PATCH 03/14] refs #1416 : modified : some PHP 5.3 server does not recognize legacy static variables. --- framework/legacy/Needlworks.PHP.Loader.php | 49 ++++++++++++---------- 1 file changed, 27 insertions(+), 22 deletions(-) diff --git a/framework/legacy/Needlworks.PHP.Loader.php b/framework/legacy/Needlworks.PHP.Loader.php index bb06f1cce..88db6dd3b 100644 --- a/framework/legacy/Needlworks.PHP.Loader.php +++ b/framework/legacy/Needlworks.PHP.Loader.php @@ -39,30 +39,35 @@ function requireLibrary($name) { /** Autoload components */ class Autoload_Legacy { - public static $db = array( - 'POD','DBQuery'); - public static $data = array( - 'Attachment','BlogSetting','BlogStatistics','Category','Comment','CommentNotified', - 'CommentNotifiedSiteInfo','DailyStatistics','DataMaintenance','Feed', - 'Filter','GuestComment','Keyword','Link','LinkCategories','Notice','PluginSetting','Post', - 'RefererLog','RefererStatistics','ServiceSetting','SkinSetting','SubscriptionLog', - 'SubscriptionStatistics','Tag','Trackback','TrackbackLog','UserInfo','UserSetting' - ); - public static $model = array( - 'Message','Paging','PluginCustomConfig','Statistics','User' - ); - public static $base = array( - 'Base64Stream','HTTPRequest','OutputWriter','XMLRPC','XMLRPCFault', - 'XMLCustomType','XMLTree','Pop3','CommunicationFeed'); - public static $function = array( - 'Image','Setting','Respond','Misc'); - public static $openid = array( - 'OpenID', 'OpenIDSession', 'OpenIDConsumer'); - public static $control = array( - 'Session','RSS'); - public static function load($name) { + private static function initialize() { + self::$db = array( + 'POD','DBQuery'); + self::$data = array( + 'Attachment','BlogSetting','BlogStatistics','Category','Comment','CommentNotified', + 'CommentNotifiedSiteInfo','DailyStatistics','DataMaintenance','Feed', + 'Filter','GuestComment','Keyword','Link','LinkCategories','Notice','PluginSetting','Post', + 'RefererLog','RefererStatistics','ServiceSetting','SkinSetting','SubscriptionLog', + 'SubscriptionStatistics','Tag','Trackback','TrackbackLog','UserInfo','UserSetting' + ); + self::$model = array( + 'Message','Paging','PluginCustomConfig','Statistics','User' + ); + self::$base = array( + 'Base64Stream','HTTPRequest','OutputWriter','XMLRPC','XMLRPCFault', + 'XMLCustomType','XMLTree','Pop3','CommunicationFeed'); + self::$function = array( + 'Image','Setting','Respond','Misc'); + self::$openid = array( + 'OpenID', 'OpenIDSession', 'OpenIDConsumer'); + self::$control = array( + 'Session','RSS'); + } + private static function load($name) { global $service, $database; $name = ucfirst($name); + if(!defined(self::$data)) { + self::initialize(); + } if(in_array($name,self::$data)) { require_once(ROOT . "/framework/legacy/Textcube.Data.".$name.".php"); } else if (in_array($name,self::$model)) { From 67c0ceefb0c68f8c26e903512673a3ecd5f51968 Mon Sep 17 00:00:00 2001 From: inureyes Date: Fri, 22 Apr 2011 17:36:30 -0400 Subject: [PATCH 04/14] refs #1416 : bugfix : PHP 5.3 (before 5.3.6) related error fixed. --- framework/legacy/Needlworks.PHP.Loader.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/framework/legacy/Needlworks.PHP.Loader.php b/framework/legacy/Needlworks.PHP.Loader.php index 88db6dd3b..b45b2a591 100644 --- a/framework/legacy/Needlworks.PHP.Loader.php +++ b/framework/legacy/Needlworks.PHP.Loader.php @@ -39,6 +39,13 @@ function requireLibrary($name) { /** Autoload components */ class Autoload_Legacy { + private static $db; + private static $data; + private static $model; + private static $base; + private static $function; + private static $openid; + private static $control; private static function initialize() { self::$db = array( 'POD','DBQuery'); @@ -62,10 +69,10 @@ private static function initialize() { self::$control = array( 'Session','RSS'); } - private static function load($name) { + public static function load($name) { global $service, $database; $name = ucfirst($name); - if(!defined(self::$data)) { + if(empty(self::$data)) { self::initialize(); } if(in_array($name,self::$data)) { From 2569e589b7aba443a4679722c627194c63dfb89c Mon Sep 17 00:00:00 2001 From: inureyes Date: Sat, 23 Apr 2011 13:43:13 -0400 Subject: [PATCH 05/14] refs #1416 : Modified : rewrite autoload_legacy class as an instance-based. (for PHP 5.3) --- framework/legacy/Needlworks.PHP.Loader.php | 44 ++++++++++------------ library/preprocessor.php | 2 +- 2 files changed, 20 insertions(+), 26 deletions(-) diff --git a/framework/legacy/Needlworks.PHP.Loader.php b/framework/legacy/Needlworks.PHP.Loader.php index b45b2a591..9a93841f8 100644 --- a/framework/legacy/Needlworks.PHP.Loader.php +++ b/framework/legacy/Needlworks.PHP.Loader.php @@ -39,55 +39,48 @@ function requireLibrary($name) { /** Autoload components */ class Autoload_Legacy { - private static $db; - private static $data; - private static $model; - private static $base; - private static $function; - private static $openid; - private static $control; - private static function initialize() { - self::$db = array( + private function initialize() { + $this->db = array( 'POD','DBQuery'); - self::$data = array( + $this->data = array( 'Attachment','BlogSetting','BlogStatistics','Category','Comment','CommentNotified', 'CommentNotifiedSiteInfo','DailyStatistics','DataMaintenance','Feed', 'Filter','GuestComment','Keyword','Link','LinkCategories','Notice','PluginSetting','Post', 'RefererLog','RefererStatistics','ServiceSetting','SkinSetting','SubscriptionLog', 'SubscriptionStatistics','Tag','Trackback','TrackbackLog','UserInfo','UserSetting' ); - self::$model = array( + $this->model = array( 'Message','Paging','PluginCustomConfig','Statistics','User' ); - self::$base = array( + $this->base = array( 'Base64Stream','HTTPRequest','OutputWriter','XMLRPC','XMLRPCFault', 'XMLCustomType','XMLTree','Pop3','CommunicationFeed'); - self::$function = array( + $this->function = array( 'Image','Setting','Respond','Misc'); - self::$openid = array( + $this->openid = array( 'OpenID', 'OpenIDSession', 'OpenIDConsumer'); - self::$control = array( + $this->control = array( 'Session','RSS'); } - public static function load($name) { + public function load($name) { global $service, $database; $name = ucfirst($name); - if(empty(self::$data)) { - self::initialize(); + if(!isset($this->data)) { + $this->initialize(); } - if(in_array($name,self::$data)) { + if(in_array($name,$this->data)) { require_once(ROOT . "/framework/legacy/Textcube.Data.".$name.".php"); - } else if (in_array($name,self::$model)) { + } else if (in_array($name,$this->model)) { require_once(ROOT . "/framework/legacy/Textcube.Model.".$name.".php"); - } else if (in_array($name,self::$base)) { + } else if (in_array($name,$this->base)) { if(in_array($name, array('XMLRPC','XMLRPCFault','XMLCustomType'))) require_once(ROOT . "/framework/legacy/Needlworks.PHP.XMLRPC.php"); else require_once(ROOT . "/framework/legacy/Needlworks.PHP.".$name.".php"); - } else if (in_array($name,self::$function)) { + } else if (in_array($name,$this->function)) { require_once(ROOT . "/framework/legacy/Textcube.Function.".$name.".php"); - } else if (in_array($name,self::$openid)) { + } else if (in_array($name,$this->openid)) { require_once(ROOT . "/framework/legacy/Textcube.Control.Openid.php"); - } else if (in_array($name,self::$control)) { + } else if (in_array($name,$this->control)) { if($name == 'Session' && isset($service['memcached']) && $service['memcached'] == true) require_once(ROOT . "/framework/legacy/Textcube.Control.".$name.".Memcached.php"); else require_once(ROOT . "/framework/legacy/Textcube.Control.".$name.".php"); @@ -98,5 +91,6 @@ public static function load($name) { } } } -spl_autoload_register(array('Autoload_Legacy', 'load')); +$autoloadInstance_Legacy = new Autoload_Legacy(); +spl_autoload_register(array($autoloadInstance_Legacy, 'load')); ?> diff --git a/library/preprocessor.php b/library/preprocessor.php index 3fe800b8a..99f86feb3 100644 --- a/library/preprocessor.php +++ b/library/preprocessor.php @@ -12,7 +12,7 @@ */ $bootFiles = array(); // From PHP 5.3, DirectoryIterator does not gurantee the order. foreach (new DirectoryIterator(ROOT.'/framework/boot') as $fileInfo) { - if($fileInfo->isFile()) array_push($bootFiles, $fileInfo->getPathname()); + if($fileInfo->isFile() && substr($fileInfo->getBasename(),-3) == 'php') array_push($bootFiles, $fileInfo->getPathname()); } sort($bootFiles); foreach ($bootFiles as $bf) { From 11f5205426777a75eb4a54c489ecc7081df11e79 Mon Sep 17 00:00:00 2001 From: inureyes Date: Sat, 23 Apr 2011 13:56:58 -0400 Subject: [PATCH 06/14] refs #1416 : modified : ROOT variable now points absolute path. (some PHP 5.3 services does now accept relative path.) --- rewrite.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rewrite.php b/rewrite.php index d67b43caf..0a20c08e9 100644 --- a/rewrite.php +++ b/rewrite.php @@ -3,7 +3,7 @@ /// All rights reserved. Licensed under the GPL. /// See the GNU General Public License for more details. (/documents/LICENSE, /documents/COPYRIGHT) -define('ROOT', '.'); +define('ROOT',dirname(__FILE__)); require_once(ROOT.'/framework/Dispatcher.php'); /** Dispatching Interface request via URI */ $dispatcher = Dispatcher::getInstance(); From ff4de75f6767d0ec400876b172f02da946c5a845 Mon Sep 17 00:00:00 2001 From: inureyes Date: Mon, 25 Apr 2011 14:21:45 -0400 Subject: [PATCH 07/14] refs #1572 : Modified : version number. --- framework/id/textcube/config.default.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/framework/id/textcube/config.default.php b/framework/id/textcube/config.default.php index 2bb803605..12a69ccc8 100644 --- a/framework/id/textcube/config.default.php +++ b/framework/id/textcube/config.default.php @@ -5,10 +5,11 @@ // Define basic signatures. define('TEXTCUBE_NAME', 'Textcube'); -define('TEXTCUBE_VERSION', '1.8.6 : Release Candidate 2'); +define('TEXTCUBE_VERSION', '1.8.6 : Accelerando'); +define('TEXTCUBE_REVISION', 'root-main-branch1.8-r28'); define('TEXTCUBE_COPYRIGHT', 'Copyright © 2004-2011. Needlworks / Tatter Network Foundation. All rights reserved. Licensed under the GPL.'); define('TEXTCUBE_HOMEPAGE', 'http://www.textcube.org/'); -define('TEXTCUBE_RESOURCE_URL', 'http://resources.textcube.org/1.8.4'); +define('TEXTCUBE_RESOURCE_URL', 'http://resources.textcube.org/1.8.6'); define('TEXTCUBE_NOTICE_URL','http://feeds.feedburner.com/textcube/'); define('CRLF', "\r\n"); define('TAB', " "); From 8e224cf38fa3d312c809937a4a41eaf9d59c5bce Mon Sep 17 00:00:00 2001 From: inureyes Date: Tue, 26 Apr 2011 23:02:56 -0400 Subject: [PATCH 08/14] refs #1576 : Added : android-specific UI added. --- interface/index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interface/index.php b/interface/index.php index 384ed1ed0..2dff0471f 100644 --- a/interface/index.php +++ b/interface/index.php @@ -47,7 +47,8 @@ require ROOT . '/library/preprocessor.php'; // Redirect for ipod touch / iPhone -if(Setting::getBlogSettingGlobal('useiPhoneUI',true) && (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'],'iPod') || strpos($_SERVER['HTTP_USER_AGENT'],'iPhone')))){ +$browserUtil = Utils_Browser::getInstance(); +if(Setting::getBlogSettingGlobal('useiPhoneUI',true) && ($browserUtil->isMobile() == true)){ if(isset($suri['id'])) { $slogan = getSloganById($blogid, $suri['id']); if(!empty($slogan)) { From 62283cd2ebf9555d1c0ef6aff45dc8e4042097f7 Mon Sep 17 00:00:00 2001 From: inureyes Date: Tue, 26 Apr 2011 23:06:57 -0400 Subject: [PATCH 09/14] closes #1576 : Added : turn off test flag for Android. Document modified. --- documents/changelog_ko.txt | 1 + framework/utils/Browser.php | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/documents/changelog_ko.txt b/documents/changelog_ko.txt index 04a8d8948..1c9adaaf5 100644 --- a/documents/changelog_ko.txt +++ b/documents/changelog_ko.txt @@ -4,6 +4,7 @@ == v1.8.6 개발 관련 노트 == === 추가된 점 === * 스킨 : 댓글 다 보여주기 / 페이징 여부에 상관없이 댓글 정렬 순서를 스킨/스킨 상세 설정 에서 조정할 수 있도록 함.(#1570) + * 블로그 : 안드로이드에서 iPhone/iPod Touch와 동일한 UI 지원 (#1576) === 변경된 점 === * 일반 : jQuery 라이브러리의 버전 업데이트 (#1560) diff --git a/framework/utils/Browser.php b/framework/utils/Browser.php index 6e201cf0b..025f4f62a 100644 --- a/framework/utils/Browser.php +++ b/framework/utils/Browser.php @@ -17,9 +17,9 @@ function __construct() { public function getBrowserName() { /// Blocking (is in development) $ctx = Model_Context::getInstance(); - if($ctx->getProperty('service.usemobileadmin',true) === false) { - return 'unknown'; - } +// if($ctx->getProperty('service.usemobileadmin',true) === false) { +// return 'unknown'; +// } if(!is_null($this->browserName)) return $this->browserName; if(isset($_SERVER['HTTP_USER_AGENT'])) { if(strpos($_SERVER['HTTP_USER_AGENT'],'iPhone') || From 2eff9349a430c7644fe07dad4bcbd7c818013891 Mon Sep 17 00:00:00 2001 From: inureyes Date: Tue, 26 Apr 2011 23:30:54 -0400 Subject: [PATCH 10/14] closes #1577 : bugfix : setup query moderated. --- resources/setup/initialize.MySQL.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/setup/initialize.MySQL.sql b/resources/setup/initialize.MySQL.sql index 44a5cbe61..7ffc74ee4 100644 --- a/resources/setup/initialize.MySQL.sql +++ b/resources/setup/initialize.MySQL.sql @@ -232,7 +232,7 @@ CREATE TABLE [##_dbPrefix_##]Lines ( root varchar(11) NOT NULL default 'default', category varchar(11) NOT NULL default 'public', author varchar(32) NOT NULL default '', - content mediumtext NOT NULL default '', + content mediumtext NOT NULL, permalink varchar(128) NOT NULL default '', created int(11) NOT NULL default 0, PRIMARY KEY (id), @@ -415,7 +415,7 @@ CREATE TABLE [##_dbPrefix_##]Widgets ( height int(11) DEFAULT NULL, scrolling int(1) default 0, feature varchar(32) default 'opensocial', - content text NOT NULL default '', + content text NOT NULL, PRIMARY KEY(id), KEY(blogid) ) [##_charset_##]; From cbfb0b6d3da8e3bbc0db60f9a66496a68e95482d Mon Sep 17 00:00:00 2001 From: inureyes Date: Tue, 26 Apr 2011 23:32:36 -0400 Subject: [PATCH 11/14] closes #1577 : document updated. --- documents/changelog_ko.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/documents/changelog_ko.txt b/documents/changelog_ko.txt index 1c9adaaf5..04c235b07 100644 --- a/documents/changelog_ko.txt +++ b/documents/changelog_ko.txt @@ -14,6 +14,7 @@ * 일반 : PHP 5.3 이상에서 DirectoryIterator가 더이상 순차적 파일 이름 정렬을 보장하지 않아 발생할 수 있는 라이브러리 로드 문제 수정 (#1564) * 리더 : 플래시를 통하여 악의적 공격이 가능할 수 있는 문제 수정 (#1107) * OpenID : 방문자 계정을 생성하여 XSS 삽입 방식의 공격이 가능할 수 있는 문제 수정 (#1558) + * Setup : 설치시 MySQL쿼리의 문법 오류 수정 (#1577) == v1.8.5 개발 관련 노트 == === 변경된 점 === From fbcb828e8f71444e772395cb01e1809286c05c97 Mon Sep 17 00:00:00 2001 From: inureyes Date: Wed, 27 Apr 2011 01:07:24 -0400 Subject: [PATCH 12/14] closes #1580 : bugfix : now the modification is not vapored. --- interface/owner/skin/edit/download/index.php | 3 - interface/owner/skin/edit/index.php | 60 +++++++++++++------- 2 files changed, 39 insertions(+), 24 deletions(-) diff --git a/interface/owner/skin/edit/download/index.php b/interface/owner/skin/edit/download/index.php index 7d39ca7c7..c82eba923 100644 --- a/interface/owner/skin/edit/download/index.php +++ b/interface/owner/skin/edit/download/index.php @@ -9,9 +9,6 @@ ); require ROOT . '/library/preprocessor.php'; -if (false) { - fetchConfigVal(); -} if (!file_exists(ROOT . "/skin/customize/".getBlogId()."/".$_GET['file'])) exit; diff --git a/interface/owner/skin/edit/index.php b/interface/owner/skin/edit/index.php index 0db513e57..33d3350be 100644 --- a/interface/owner/skin/edit/index.php +++ b/interface/owner/skin/edit/index.php @@ -49,40 +49,58 @@ function setSkin(mode) { if ((mode == 'skin' && skinHTMLSaved == false) || (mode == 'style' && skinStyleSaved == false)) { if(mode == 'skin' && currentTag != 'all') { skinData = skinCode; + currentCode = document.getElementById(mode).value; + var request = new HTTPRequest("POST", "/owner/skin/edit/crop/"); + request.onSuccess = function() { + skinData = this.getText("/response/skinCode"); + saveSkinCode(mode,skinData,file); + } + request.onError = function() { + if (this.getText("/response/msg")) + alert(this.getText("/response/msg")); + else + alert(''); + } + request.send('skinCode='+encodeURIComponent(skinCode) + +'¤tTag='+encodeURIComponent(currentTag) + +'¤tCode='+encodeURIComponent(currentCode) + +'&nextTag=all'); } else { skinData = skin.value; + saveSkinCode(mode,skinData,file); } - - var request = new HTTPRequest("POST", "/owner/skin/edit/skin/"); - request.onSuccess = function() { - PM.showMessage("", "center", "bottom"); - - if (mode == 'skin') { - skinHTMLSaved = true; - if(document.getElementById('skin-download').innerHTML == '') { - document.getElementById('skin-download').innerHTML = ''; - } - } else { - skinStyleSaved = true; + } + } + function saveSkinCode(mode,skinData,file) { + var request = new HTTPRequest("POST", "/owner/skin/edit/skin/"); + request.onSuccess = function() { + PM.showMessage("", "center", "bottom"); + + if (mode == 'skin') { + skinHTMLSaved = true; + if(document.getElementById('skin-download').innerHTML == '') { + document.getElementById('skin-download').innerHTML = ''; } + } else { + skinStyleSaved = true; } - request.onError = function() { - if (this.getText("/response/msg")) - alert(this.getText("/response/msg")); - else - alert(''); - } - request.send('mode='+mode+'&body='+encodeURIComponent(skinData)+'&file='+ file.value); } + request.onError = function() { + if (this.getText("/response/msg")) + alert(this.getText("/response/msg")); + else + alert(''); + } + request.send('mode='+mode+'&body='+encodeURIComponent(skinData)+'&file='+ file.value); } - var currentTag = 'all'; var currentCode = ''; + function changeTab(mode,tag) { currentCode = document.getElementById(mode).value; var request = new HTTPRequest("POST", "/owner/skin/edit/crop/"); request.onSuccess = function() { - PM.showMessage("", "center", "top"); + PM.showMessage("", "center", "bottom"); document.getElementById(mode).value = (this.getText("/response/code") ? this.getText("/response/code") : ''); skinCode = this.getText("/response/skinCode"); document.getElementById('skin-'+currentTag).className = ''; From 84999ea13cc2a09fe076c942af13c7467db52944 Mon Sep 17 00:00:00 2001 From: inureyes Date: Wed, 27 Apr 2011 01:21:02 -0400 Subject: [PATCH 13/14] closes #1580 : document updated. --- documents/changelog_ko.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/documents/changelog_ko.txt b/documents/changelog_ko.txt index 04c235b07..f66c83c24 100644 --- a/documents/changelog_ko.txt +++ b/documents/changelog_ko.txt @@ -15,6 +15,7 @@ * 리더 : 플래시를 통하여 악의적 공격이 가능할 수 있는 문제 수정 (#1107) * OpenID : 방문자 계정을 생성하여 XSS 삽입 방식의 공격이 가능할 수 있는 문제 수정 (#1558) * Setup : 설치시 MySQL쿼리의 문법 오류 수정 (#1577) + * 스킨 : 스킨 편집시 마지막으로 편집한 탭의 내용이 저장되지 않는 문제 수정 (#1580) == v1.8.5 개발 관련 노트 == === 변경된 점 === From 4819743e14e2e506d768cf09b1be6557d36da0d3 Mon Sep 17 00:00:00 2001 From: inureyes Date: Wed, 27 Apr 2011 01:34:29 -0400 Subject: [PATCH 14/14] Added tag 1.8.6 for changeset 1abd8e6863c2