summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2009-01-14 19:55:21 +0100
committerAndreas Gohr <andi@splitbrain.org>2009-01-14 19:55:21 +0100
commit1481facf966a8cdf2ec62342f57304f924b22f95 (patch)
tree72130852beeda67e3875011232330392e930623f /inc
parent5bb99c637ef0189d829d0070208d2451a1c497aa (diff)
downloadrpg-1481facf966a8cdf2ec62342f57304f924b22f95.tar.gz
rpg-1481facf966a8cdf2ec62342f57304f924b22f95.tar.bz2
fixed typo in tpl_license()
darcs-hash:20090114185521-7ad00-3bb2c0be133fb4a3077613006b8e93f10b7d798a.gz
Diffstat (limited to 'inc')
-rw-r--r--inc/template.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/template.php b/inc/template.php
index 41efa9d78..6faf4881d 100644
--- a/inc/template.php
+++ b/inc/template.php
@@ -1317,11 +1317,11 @@ function tpl_license($img='badge',$return=false){
if($src){
$out .= '<a href="'.$lic['url'].'" rel="license"';
if($conf['target']['external']) $out .= ' target="'.$conf['target']['external'].'"';
- $out .= '><img src="'.DOKU_BASE.$src.'" class="lic'.$button.'" alt="'.$lic['name'].'" align="left" /></a>';
+ $out .= '><img src="'.DOKU_BASE.$src.'" class="lic'.$img.'" alt="'.$lic['name'].'" align="left" /></a> ';
}
}
$out .= $lang['license'];
- $out .= ' <a href="'.$lic['url'].'" rel="license" class="urlextern"';
+ $out .= '<a href="'.$lic['url'].'" rel="license" class="urlextern"';
if($conf['target']['external']) $out .= ' target="'.$conf['target']['external'].'"';
$out .= '>'.$lic['name'].'</a>';
$out .= '</p>';