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/tree.inc.php | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/interface/lib/classes/tree.inc.php b/interface/lib/classes/tree.inc.php
index af030ae..a2bdfd2 100644
--- a/interface/lib/classes/tree.inc.php
+++ b/interface/lib/classes/tree.inc.php
@@ -1,7 +1,7 @@
<?php
/*
-Copyright (c) 2005, Till Brehm, projektfarm Gmbh
+Copyright (c) 2007, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
@@ -128,7 +128,7 @@
}
/*
- L�schen von Eintr�gen ohne Child's
+ Löschen von Einträgen ohne Child's
*/
function del($id) {
@@ -142,16 +142,16 @@
}
/*
- Rekursives l�schen von Eintr�gen
+ Rekursives löschen von Einträgen
*/
function deltree($tree_id) {
- // l�sche Eintr�ge recursiv
+ // lösche Einträge recursiv
$this->_deltree_recurse(&$this->obj[$this->root_id],$tree_id, 0);
}
/*
- Hilfsfunktion f�r deltree
+ Hilfsfunktion für deltree
*/
function _deltree_recurse($myobj,$tree_id,$delete) {
@@ -166,7 +166,7 @@
// recurse durch Objekte
$this->_deltree_recurse(&$val,$tree_id,$delete);
- // l�sche Eintrag
+ // lösche Eintrag
if($delete == 1) {
$tmp_id = $val->id;
$this->obj[$tmp_id] = NULL;
@@ -207,7 +207,7 @@
}
/*
- Funktion zum Verschieben von Eintr�gen
+ Funktion zum Verschieben von Einträgen
*/
function move($id, $new_parent) {
@@ -237,7 +237,7 @@
/*
Funktion zum registrieren von Events
- m�gliche events: insert, update, delete
+ mögliche events: insert, update, delete
*/
--
Gitblit v1.9.1