From 8fb04bee97aa6ae0b4a9faac0a4c0d2d27e1f64e Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Thu, 06 Oct 2011 15:36:04 -0400
Subject: [PATCH] Read group members according to objectClass of group records; support groupOfUrls; cache groups listing for better performance
---
program/include/clisetup.php | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/program/include/clisetup.php b/program/include/clisetup.php
index fbea980..01d7291 100644
--- a/program/include/clisetup.php
+++ b/program/include/clisetup.php
@@ -5,7 +5,7 @@
| program/include/clisetup.php |
| |
| This file is part of the Roundcube Webmail client |
- | Copyright (C) 2010, Roundcube Dev, - Switzerland |
+ | Copyright (C) 2010, The Roundcube Dev Team |
| Licensed under the GNU GPL |
| |
| PURPOSE: |
@@ -23,8 +23,10 @@
die('Not on the "shell" (php-cli).');
}
-require_once 'iniset.php';
+require_once INSTALL_PATH . 'program/include/iniset.php';
+// Unset max. execution time limit, set to 120 seconds in iniset.php
+@set_time_limit(0);
/**
* Parse commandline arguments into a hash array
--
Gitblit v1.9.1