Changeset 4497


Ignore:
Timestamp:
Dec 15, 2009, 1:44:24 PM (14 years ago)
Author:
Criss
Message:

[ContactForm] bug 0001330

Fix minor javascript bug

Location:
extensions/ContactForm
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • extensions/ContactForm/CHANGELOG

    r4491 r4497  
     12009-12-15 1.0.8
     2                  Fix minor javascript bug
     3
    142009-12-14 1.0.7
    25                  Fix bug: Form not displayed if template-extension is used on index
  • extensions/ContactForm/include/cf_common.inc.php

    r4491 r4497  
    77
    88// Version
    9 define('CF_VERSION',            '1.0.7');
     9define('CF_VERSION',            '1.0.8');
    1010define('CF_TITLE',              'cf_plugin_name');
    1111
  • extensions/ContactForm/template/cf_form.tpl

    r3771 r4497  
    4444    '{/literal}{'cf_message_error'|@translate|@escape:javascript}{literal}');
    4545  var i;
    46   for (i in items) {
     46  for (i=0 ; i<items.length ; i++) {
    4747    var item = document.getElementById(items[i]);
    4848    var is_ok = cf_check_content(item, is_mail[i]);
Note: See TracChangeset for help on using the changeset viewer.