fixed undeclared javascript variables
This commit is contained in:
@@ -11,7 +11,7 @@ $Source$
|
|||||||
- check config file also on wakeup (bug #1376522)
|
- check config file also on wakeup (bug #1376522)
|
||||||
* libraries/Config.class.php, libraries/common.lib.php:
|
* libraries/Config.class.php, libraries/common.lib.php:
|
||||||
fixed handling of https and $cfg['ForceSSL'] (bug #1379491)
|
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>
|
2005-12-14 Michal Čihař <michal@cihar.com>
|
||||||
* libraries/config.default.php, Documentation.html: Transliterate invalid
|
* libraries/config.default.php, Documentation.html: Transliterate invalid
|
||||||
|
@@ -292,7 +292,7 @@ function emptyCheckTheField(theForm, theFieldName)
|
|||||||
function emptyFormElements(theForm, theFieldName)
|
function emptyFormElements(theForm, theFieldName)
|
||||||
{
|
{
|
||||||
var theField = theForm.elements[theFieldName];
|
var theField = theForm.elements[theFieldName];
|
||||||
isEmpty = emptyCheckTheField(theForm, theFieldName);
|
var isEmpty = emptyCheckTheField(theForm, theFieldName);
|
||||||
|
|
||||||
if (isEmpty) {
|
if (isEmpty) {
|
||||||
theForm.reset();
|
theForm.reset();
|
||||||
|
Reference in New Issue
Block a user