From aa370627b211a51dc46891cfa4b6e3d2ef3e52db Mon Sep 17 00:00:00 2001
From: mcramer <m.cramer@pixcept.de>
Date: Tue, 16 Jul 2013 10:45:17 -0400
Subject: [PATCH] - Fixed FS#2924 - the month will not set automatically in the autoresponder by click now   Along with this fixed some display problems with the combo boxes introduced in 3.0.5.   Some fields were not correctly displayed with the predefined values if value and text of the underlying option element differ.

---
 interface/lib/classes/db_firebird.inc.php |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/interface/lib/classes/db_firebird.inc.php b/interface/lib/classes/db_firebird.inc.php
index 98547e3..883e7ba 100644
--- a/interface/lib/classes/db_firebird.inc.php
+++ b/interface/lib/classes/db_firebird.inc.php
@@ -322,12 +322,12 @@
   		return $this->query($sql);
    }
    
-   // gibt Array mit Tabellennamen zur�ck
+   // gibt Array mit Tabellennamen zurück
    function getTables($database_name) {
         return false;       
    }
    
-   // gibt Feldinformationen zur Tabelle zur�ck
+   // gibt Feldinformationen zur Tabelle zurück
    /*
    $columns = array(action =>   add | alter | drop
                     name =>     Spaltenname
@@ -366,7 +366,7 @@
         return 'char';
    break;
    case 'varchar':
-        if($typeValue < 1) $go_api->errorMessage("Datenbank Fehler: F�r diesen Datentyp ist eine L�ngenangabe notwendig.");
+        if($typeValue < 1) $go_api->errorMessage("Datenbank Fehler: Für diesen Datentyp ist eine Längenangabe notwendig.");
         return 'varchar('.$typeValue.')';
    break;
    case 'text':

--
Gitblit v1.9.1