Merge branch 'seeddms-5.0.x' into develop

This commit is contained in:
Uwe Steinmann 2015-08-25 14:58:49 +02:00
commit 397c5ee9d8

View File

@ -53,6 +53,12 @@ class SeedDMS_View_Common {
$this->params[$name] = $value;
}
function getParam($name) {
if(isset($this->params[$name]))
return $this->params[$name];
return null;
}
function unsetParam($name) {
if(isset($this->params[$name]))
unset($this->params[$name]);