fixed undeclared javascript variables

This commit is contained in:
Sebastian Mendel
2005-12-15 09:20:06 +00:00
parent 4c0f4addb5
commit a741946141
2 changed files with 65 additions and 65 deletions

View File

@@ -11,7 +11,7 @@ $Source$
- check config file also on wakeup (bug #1376522)
* libraries/Config.class.php, libraries/common.lib.php:
fixed handling of https and $cfg['ForceSSL'] (bug #1379491)
* left.php: fixed undeclared javascript variables
* left.php, js/function.js: fixed undeclared javascript variables
2005-12-14 Michal Čihař <michal@cihar.com>
* libraries/config.default.php, Documentation.html: Transliterate invalid

View File

@@ -292,7 +292,7 @@ function emptyCheckTheField(theForm, theFieldName)
function emptyFormElements(theForm, theFieldName)
{
var theField = theForm.elements[theFieldName];
isEmpty = emptyCheckTheField(theForm, theFieldName);
var isEmpty = emptyCheckTheField(theForm, theFieldName);
if (isEmpty) {
theForm.reset();