summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorchristophe.boulain <>2009-01-06 14:38:07 +0000
committerchristophe.boulain <>2009-01-06 14:38:07 +0000
commit38d388920b3b947deeb0ce5fd037f1afa5fbc844 (patch)
treea878ca4db02cfde6112d41b6aa7134ec908ea314 /framework
parent1f8b20c95e8b82f05785868ee1a3aaf891afad60 (diff)
Fixed Issue#9 : Global page properties are ignored when using external configuration
Diffstat (limited to 'framework')
-rw-r--r--framework/Web/Services/TPageService.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/Web/Services/TPageService.php b/framework/Web/Services/TPageService.php
index 89c5bb37..e35fb0e3 100644
--- a/framework/Web/Services/TPageService.php
+++ b/framework/Web/Services/TPageService.php
@@ -4,7 +4,7 @@
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2005-2008 PradoSoft
+ * @copyright Copyright &copy; 2005-2008 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id$
* @package System.Web.Services
@@ -114,7 +114,7 @@ class TPageService extends TService
/**
* @var array list of initial page property values
*/
- private $_properties;
+ private $_properties=array();
/**
* @var boolean whether service is initialized
*/
@@ -167,7 +167,7 @@ class TPageService extends TService
protected function applyConfiguration($config)
{
// initial page properties (to be set when page runs)
- $this->_properties=$config->getProperties();
+ $this->_properties=array_merge($this->_properties, $config->getProperties());
$this->getApplication()->getAuthorizationRules()->mergeWith($config->getRules());
$pagePath=$this->getRequestedPagePath();
// external configurations