diff --git a/app/code/core/Mage/Adminhtml/Block/Notification/Security.php b/app/code/core/Mage/Adminhtml/Block/Notification/Security.php
index 9f9cf78a647..37ca7aef0fc 100644
--- a/app/code/core/Mage/Adminhtml/Block/Notification/Security.php
+++ b/app/code/core/Mage/Adminhtml/Block/Notification/Security.php
@@ -33,20 +33,20 @@ class Mage_Adminhtml_Block_Notification_Security extends Mage_Adminhtml_Block_Te
* File path for verification
* @var string
*/
- private $_filePath = 'app/etc/local.xml';
+ protected $_filePath = 'app/etc/local.xml';
/**
* Time out for HTTP verification request
* @var int
*/
- private $_verificationTimeOut = 2;
+ protected $_verificationTimeOut = 2;
/**
* Check verification result and return true if system must to show notification message
*
* @return bool
*/
- private function _canShowNotification()
+ protected function _canShowNotification()
{
if (Mage::app()->loadCache(self::VERIFICATION_RESULT_CACHE_KEY)) {
return false;
@@ -64,7 +64,7 @@ private function _canShowNotification()
*
* @return bool
*/
- private function _isFileAccessible()
+ protected function _isFileAccessible()
{
$defaultUnsecureBaseURL = (string) Mage::getConfig()->getNode('default/' . Mage_Core_Model_Store::XML_PATH_UNSECURE_BASE_URL);