다음은 전체 변경 로그와이 변경 로그에 대한 이해입니다.
어떤 원인이 영향을받는 파일은 다음과 같습니다.
HTML 변경 탈출
파일
app/code/core/Mage/Adminhtml/Block/Report/Review/Detail.php
app/code/core/Mage/Adminhtml/Block/Report/Tag/Product/Detail.php
app/code/core/Mage/Adminhtml/Block/Review/Add.php
app/code/core/Mage/Adminhtml/Block/Review/Edit/Form.php
app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/Grid.php
app/design/adminhtml/default/default/template/sales/billing/agreement/view/tab/info.phtml
app/design/adminhtml/default/default/template/xmlconnect/edit/tab/content.phtml
app/design/adminhtml/default/default/template/xmlconnect/edit/tab/design/image_edit.phtml
js/mage/adminhtml/backup.js
대신 '/'DS 추가
app/code/core/Mage/Adminhtml/Model/LayoutUpdate/Validator.php
새로운 파일 추가
app/code/core/Zend/Form/Decorator/Form.php
lib/Varien/Filter/FormElementName.php
완전한 변경 파일
app / code / core / Mage / Adminhtml / Model / System / Config / Backend / Filename.php
class Mage_Adminhtml_Model_System_Config_Backend_Filename extends Mage_Core_Model_Config_Data
{
+
+ /**
+ * Config path for system log file.
+ */
+ const DEV_LOG_FILE_PATH = 'dev/log/file';
+
+ /**
+ * Config path for exception log file.
+ */
+ const DEV_LOG_EXCEPTION_FILE_PATH = 'dev/log/exception_file';
+
+ /**
+ * Processing object before save data
+ *
+ * @return Mage_Adminhtml_Model_System_Config_Backend_Filename
+ * @throws Mage_Core_Exception
+ */
protected function _beforeSave()
{
- $value = $this->getValue();
- $value = basename($value);
+ $value = $this->getValue();
+ $configPath = $this->getPath();
+ $value = basename($value);
+
+ // if dev/log setting, validate log file extension.
+ if ($configPath == self::DEV_LOG_FILE_PATH || $configPath == self::DEV_LOG_EXCEPTION_FILE_PATH) {
+ if (!Mage::helper('log')->isLogFileExtensionValid($value)) {
+ throw Mage::exception('Mage_Core', Mage::helper('adminhtml')->__
+ ('Invalid file extension used for log file. Allowed file extensions: log, txt, html, csv'));
+ }
+ }
+
$this->setValue($value);
return $this;
}
getCacheId () 및 getServiceUrl () 메소드 추가
app/code/core/Mage/Api/Helper/Data.php
unserialize () 메소드 추가
app/code/core/Mage/Core/Helper/String.php
app / code / core / Mage / Api / Helper / Data.php에서 생성 된 getServiceUrl () 메소드 사용
app/code/core/Mage/Api/Model/Server/Adapter/Soap.php
app/code/core/Mage/Api/Model/Wsdl/Config/Base.php
app / code / core / Mage / Api / Helper / Data.php에서 생성 된 getCacheId () 메소드 사용
app/code/core/Mage/Api/Model/Wsdl/Config.php
unserialize()
app / code / core / Mage / Core / Helper / String.php에서 생성 된 위의 방법
app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Serialized.php
app/code/core/Mage/Rule/Model/Abstract.php
댓글 변경
app/code/core/Mage/Core/Model/File/Validator/Image.php
app/code/core/Mage/Core/etc/system.xml
댓글 추가
app/code/core/Mage/Core/etc/config.xml
추가 된 최대 비밀번호 길이
app/code/core/Mage/Customer/Model/Customer.php
허용 된 파일 확장자 허용 // $ _ allowedFileExtensions = array ( 'log', 'txt', 'html', 'csv');
app/code/core/Mage/Log/Helper/Data.php
무슨 변화를 몰라
app/design/adminhtml/default/default/template/backup/dialogs.phtml
이슈리스트
SUPEE-10415는 바스켓 제어를 방지합니다
magento의 페이팔에서 # 10415의 오류 코드를 얻습니다.