Index: trunk/core/kernel/processors/tag_processor.php =================================================================== diff -u -N -r3723 -r4199 --- trunk/core/kernel/processors/tag_processor.php (.../tag_processor.php) (revision 3723) +++ trunk/core/kernel/processors/tag_processor.php (.../tag_processor.php) (revision 4199) @@ -40,21 +40,21 @@ }*/ } - function ProcessParsedTag($tag, $params, $prefix) + function ProcessParsedTag($tag, $params, $prefix) { - $Method=$tag; + $Method = $tag; if(method_exists($this, $Method)) { if( $this->Application->isDebugMode() && dbg_ConstOn('DBG_SHOW_TAGS') ) { global $debugger; $debugger->appendHTML('Processing PreParsed Tag '.$Method.' in '.$this->Prefix); } - + //echo htmlspecialchars($tag->GetFullTag()).'
'; return $this->$Method($params); } - else + else { if ($this->Application->hasObject('TagsAggregator')) { $aggregator =& $this->Application->recallObject('TagsAggregator'); @@ -69,25 +69,13 @@ $params['PrefixSpecial'] = $prefix; return $processor->ProcessParsedTag($tag_mapping[1], $params, $prefix); } - trigger_error('Tag '.$Method.' Undefined in '.get_class($this).'[Agregated Tag]:
'.$tag.'', E_USER_WARNING); + trigger_error('Tag '.$Method.' Undefined in '.get_class($this).'[Agregated Tag]:
'.$tag.'', E_USER_WARNING); } trigger_error('Tag Undefined:
'.$tag.'',E_USER_WARNING); return false; } } - /** - * Checks if object propery value matches value passed - * - * @param Array $params - * @return bool - */ - function PropertyEquals($params) - { - $object =& $this->Application->recallObject( $this->getPrefixSpecial(), $this->Prefix, $params ); - $property_name = $params['property']; - return $object->$property_name == $params['value']; - } /** * Not tag, method for parameter