summaryrefslogtreecommitdiff
path: root/inc/html.php
diff options
context:
space:
mode:
authorAdrian Lang <lang@cosmocode.de>2009-11-13 13:34:58 +0100
committerAdrian Lang <lang@cosmocode.de>2009-11-13 13:34:58 +0100
commitc0322273adef5540c5e780c7a82329b5862a0871 (patch)
tree2220fa544fe4deee6e97c411a7b54d8b07818ebe /inc/html.php
parent7d044e2a0700980fc1947982c674b56c359b35ae (diff)
downloadrpg-c0322273adef5540c5e780c7a82329b5862a0871.tar.gz
rpg-c0322273adef5540c5e780c7a82329b5862a0871.tar.bz2
Less E_NOTICEs, removed spell checker leftover
darcs-hash:20091113123458-e4919-d4841ea9c627059a4afa8e0032dd889b3cc579cb.gz
Diffstat (limited to 'inc/html.php')
-rw-r--r--inc/html.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/inc/html.php b/inc/html.php
index f01f99cdc..f6f301725 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -1189,7 +1189,6 @@ function html_edit($text=null,$include='edit'){ //FIXME: include needed?
<?php /* sets changed to true when previewed */?>
textChanged = <?php ($mod) ? print 'true' : print 'false' ?>;
//--><!]]></script>
- <span id="spell__action"></span>
<?php } ?>
</div>
<?php
@@ -1223,7 +1222,7 @@ function html_edit($text=null,$include='edit'){ //FIXME: include needed?
$form->addElement(form_makeOpenTag('div', array('class'=>'license')));
$out = $lang['licenseok'];
$out .= '<a href="'.$license[$conf['license']]['url'].'" rel="license" class="urlextern"';
- if($conf['target']['external']) $out .= ' target="'.$conf['target']['external'].'"';
+ if(isset($conf['target']['external'])) $out .= ' target="'.$conf['target']['external'].'"';
$out .= '> '.$license[$conf['license']]['name'].'</a>';
$form->addElement($out);
$form->addElement(form_makeCloseTag('div'));