From 54bfdf693f1a3717a013f17dfd2c0bba2fcd32a6 Mon Sep 17 00:00:00 2001 From: Dominic Rubas Date: Sun, 28 Jul 2013 16:58:33 +0200 Subject: [PATCH] Change visibility from public to protected Fix problem if this core class is overloaded multiple times (d3config for example) --- core/toxid_curl_oxutilsview.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/toxid_curl_oxutilsview.php b/core/toxid_curl_oxutilsview.php index 3743bdb..6bc5d95 100644 --- a/core/toxid_curl_oxutilsview.php +++ b/core/toxid_curl_oxutilsview.php @@ -16,7 +16,7 @@ class toxid_curl_oxutilsview extends toxid_curl_oxutilsview_parent { - public function _fillCommonSmartyProperties($oSmarty) + protected function _fillCommonSmartyProperties($oSmarty) { parent::_fillCommonSmartyProperties($oSmarty); @@ -27,4 +27,4 @@ public function _fillCommonSmartyProperties($oSmarty) $oSmarty->plugins_dir = $aPluginsDir; } -} \ No newline at end of file +}