diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-10-05 09:28:25 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-10-05 09:28:25 +0000 |
| commit | fd8fee161edd62de88e5e101e2cc35f44b8c30ac (patch) | |
| tree | 7092afb3b560c6a3b90479a7f0acb96321a6d633 | |
| parent | fd7c1eafde97108a05954ffe47b9ab54a24162ea (diff) | |
- Remove memory_limit for indexcontacts.sh (#1488109)
git-svn-id: https://svn.roundcube.net/trunk@5307 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rwxr-xr-x | roundcubemail/bin/indexcontacts.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/bin/indexcontacts.sh b/roundcubemail/bin/indexcontacts.sh index e8dec2f63..ba8fe8a21 100755 --- a/roundcubemail/bin/indexcontacts.sh +++ b/roundcubemail/bin/indexcontacts.sh @@ -23,7 +23,7 @@ define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' ); require_once INSTALL_PATH.'program/include/clisetup.php'; - +ini_set('memory_limit', -1); // connect to DB $RCMAIL = rcmail::get_instance(); @@ -47,7 +47,7 @@ while ($sql_result && ($sql_arr = $db->fetch_assoc($sql_result))) { unset($row['words']); $contacts->update($row['ID'], $row); } - + echo "done.\n"; } |
