İşte tam değişiklik günlüğü ve bu değişimle ne anlıyorum
Hangi dosyalar hangi nedenden aşağıda listelenmiştir?
Kaçış Html değişikliği
dosya
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
'/' Yerine DS ekle
app/code/core/Mage/Adminhtml/Model/LayoutUpdate/Validator.php
yeni dosya eklendi
app/code/core/Zend/Form/Decorator/Form.php
lib/Varien/Filter/FormElementName.php
Değişiklik dosyasını tamamla
Uygulama / kod / çekirdek / Mage / Adminhtml / Modeli / Sistemi / yapılandırma / arka uç / 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 () ve getServiceUrl () yöntemi eklendi
app/code/core/Mage/Api/Helper/Data.php
Eklenen yöntem unserialize ()
app/code/core/Mage/Core/Helper/String.php
App / code / core / Mage / Api / Helper / Data.php içinde oluşturulan getServiceUrl () yöntemini kullanın
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 içinde oluşturulan getCacheId () yöntemini kullanın
app/code/core/Mage/Api/Model/Wsdl/Config.php
Yukarıda kullanılan unserialize()
uygulama / kod / çekirdek / Mage / çekirdek / Yardımcı / String.php oluşturulan yöntem
app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Serialized.php
app/code/core/Mage/Rule/Model/Abstract.php
Yorum değişikliği
app/code/core/Mage/Core/Model/File/Validator/Image.php
app/code/core/Mage/Core/etc/system.xml
Yorum eklendi
app/code/core/Mage/Core/etc/config.xml
Maksimum şifre uzunluğu eklendi
app/code/core/Mage/Customer/Model/Customer.php
Eklentiye izin verilen dosya uzantısı // $ _ allowFileExtensions = array ('log', 'txt', 'html', 'csv');
app/code/core/Mage/Log/Helper/Data.php
Ne değiştiğini bilmiyorum
app/design/adminhtml/default/default/template/backup/dialogs.phtml
Konu listesi
SUPEE-10415 sepet kontrolünü önler
magento içinde paypal içinde # 10415 hata kodunu almak