Changeset 2920
- Timestamp:
- 07/22/08 17:58:07 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/utils/copix/taglib/popupinformation.templatetag.php
r2870 r2920 28 28 $divclass = $this->getParam ('divclass', 'popupInformation'); 29 29 $handler = $this->getParam ('handler', 'onmouseover'); 30 $namespace = $this->getParam ('namespace', 'default'); 30 $namespace = $this->getParam ('namespace', 'default'); 31 31 $wHandle = $this->getParam ('handlerWindow'); 32 32 $wHandle = ($wHandle != null) ? ( 'handle="'.$wHandle.'" ') : ''; 33 $title = $this->getParam (' title');33 $title = $this->getParam ('popuptitle'); 34 34 35 $id = uniqid ('popupInformation');35 $id = uniqid ('popupInformation'); 36 36 37 37 switch ($handler) { … … 89 89 } 90 90 } 91 ?>
