summaryrefslogtreecommitdiff
path: root/inc/html.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2010-03-12 12:24:04 +0100
committerAndreas Gohr <andi@splitbrain.org>2010-03-12 12:24:04 +0100
commit84645d8c01570c5ea4cda556e70beccdec25ee22 (patch)
treef81b9bb3f1cb13f4d9f0a8d576b9e9fcb1eb3672 /inc/html.php
parentb77df6012df39de023b5ebb0b60f2427a465c25f (diff)
downloadrpg-84645d8c01570c5ea4cda556e70beccdec25ee22.tar.gz
rpg-84645d8c01570c5ea4cda556e70beccdec25ee22.tar.bz2
fixed target handling for license link FS#1917
Diffstat (limited to 'inc/html.php')
-rw-r--r--inc/html.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/html.php b/inc/html.php
index cfa4dbe3d..3ebba65c8 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -1202,7 +1202,7 @@ function html_edit(){
$form->addElement(form_makeOpenTag('div', array('class'=>'license')));
$out = $lang['licenseok'];
$out .= '<a href="'.$license[$conf['license']]['url'].'" rel="license" class="urlextern"';
- if(isset($conf['target']['external'])) $out .= ' target="'.$conf['target']['external'].'"';
+ if(isset($conf['target']['extern'])) $out .= ' target="'.$conf['target']['extern'].'"';
$out .= '> '.$license[$conf['license']]['name'].'</a>';
$form->addElement($out);
$form->addElement(form_makeCloseTag('div'));