Changeset 2703
- Timestamp:
- 06/26/08 11:44:53 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Copix_3_0_X/utils/copix/taglib/popupinformation.templatetag.php
r2183 r2703 31 31 $wHandle = $this->getParam ('handlerWindow'); 32 32 $wHandle = ($wHandle != null) ? ( 'handle="'.$wHandle.'" ') : ''; 33 $title = $this->getParam ('title'); 33 34 34 35 $id = uniqid ('popupInformation'); … … 72 73 $toReturn .= $close; 73 74 $toReturn .= '<div class="'.$divclass.'" id="'.$id.'" style="display:none;" rel='.$namespace.' >'; 74 75 76 if ($title !== null) { 77 $toReturn .= '<div class="' . $divclass . 'Title">' . $title . '</div>'; 78 } 79 75 80 if (isset($pParams['zone'])) { 76 81 $zone = $pParams['zone'];
