Changeset 1167
- Timestamp:
- 06/27/2008 04:40:23 PM (2 years ago)
- Files:
-
- 1 modified
-
trunk/actions/license/license.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/actions/license/license.php
r1019 r1167 50 50 * @todo replace hardcoded paths and URI #718 51 51 * @todo CSS selectors 52 * @todo complete phpdoc header 52 53 */ 53 54 … … 173 174 if (file_exists($this->GetConfigValue('wikka_action_path').'/license/inc/buttons/'.$type.'.png')) //TODO #718 174 175 { 175 $output .= '<a rel="license" title="'.$license_fullname[$type].'" href="'.$link.'"><img src="'.$this-> GetConfigValue('wikka_action_path').'/license/inc/buttons/'.$type.'.png" alt="'.$license_fullname[$type].'" /></a>' ."\n";176 $output .= '<a rel="license" title="'.$license_fullname[$type].'" href="'.$link.'"><img src="'.$this->StaticHref($this->GetConfigValue('wikka_action_path').'/license/inc/buttons/'.$type.'.png').'" alt="'.$license_fullname[$type].'" /></a>' ."\n"; 176 177 } 177 178 break; … … 181 182 if (file_exists($this->GetConfigValue('wikka_action_path').'/license/inc/badges/'.$type.'.png')) //TODO #718 182 183 { 183 $output .= '<a rel="license" title="'.$license_fullname[$type].'" href="'.$link.'"><img src="'.$this-> GetConfigValue('wikka_action_path').'/license/inc/badges/'.$type.'.png" alt="'.$license_fullname[$type].'" /></a>' ."\n";184 $output .= '<a rel="license" title="'.$license_fullname[$type].'" href="'.$link.'"><img src="'.$this->StaticHref($this->GetConfigValue('wikka_action_path').'/license/inc/badges/'.$type.'.png').'" alt="'.$license_fullname[$type].'" /></a>' ."\n"; 184 185 } 185 186 break;