X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/c9ab657042ee613e3e2b896c8cf381fee7dd3ff5..80481c14be5a7ac9e4d386ad7b3ec71d7628e03b:/dbinstall.php
diff --git a/dbinstall.php b/dbinstall.php
index 264fc379..67fac318 100644
--- a/dbinstall.php
+++ b/dbinstall.php
@@ -124,7 +124,7 @@ if ($request->isGet()) {
// Check ldap extension.
if (AUTH_MODULE == 'ldap') {
- if (extension_loaded('ldap_')) {
+ if (extension_loaded('ldap')) {
echo('ldap PHP extension is loaded.
');
} else {
echo('Error: ldap PHP extension is not loaded. It is required for LDAP authentication.
');
@@ -957,7 +957,7 @@ if ($_POST) {
print "Updated $tt_expense_items_updated tt_expense_items records...
\n";
}
- if ($_POST["convert11797to11824"]) {
+ if ($_POST["convert11797to11826"]) {
setChange("ALTER TABLE `tt_fav_reports` CHANGE `group_by` `group_by1` varchar(20) default NULL");
setChange("ALTER TABLE `tt_fav_reports` ADD `group_by2` varchar(20) default NULL AFTER `group_by1`");
setChange("ALTER TABLE `tt_fav_reports` ADD `group_by3` varchar(20) default NULL AFTER `group_by2`");
@@ -1037,6 +1037,8 @@ if ($_POST) {
setChange("update `tt_custom_field_log` cfl inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.18.23') inner join `tt_custom_fields` cf on cf.id = cfl.field_id set cfl.group_id = cf.group_id, cfl.org_id = cf.org_id where cfl.org_id is null");
setChange("ALTER TABLE `tt_custom_field_options` ADD `status` tinyint(4) default '1' after `value`");
setChange("UPDATE `tt_site_config` SET param_value = '1.18.24', modified = now() where param_name = 'version_db' and param_value = '1.18.23'");
+ setChange("ALTER TABLE `tt_groups` ADD COLUMN `description` varchar(255) default NULL after `name`");
+ setChange("UPDATE `tt_site_config` SET param_value = '1.18.26', modified = now() where param_name = 'version_db' and param_value = '1.18.24'");
}
if ($_POST["cleanup"]) {
@@ -1084,7 +1086,7 @@ if ($_POST) {
| Create database structure (v1.18.24) + | Create database structure (v1.18.26)
(applies only to new installations, do not execute when updating) |