diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-01-09 22:29:26 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-01-09 22:29:26 -0800 |
commit | 65448548637f462ad17c12b149cdb2a169d07026 (patch) | |
tree | 31952af04d038b0e55a0b4c7f1eb246598349996 /modules/server_add/models/server_add_entry.php | |
parent | fca6d1254a2aeb95bee15fea4c503e4588fc9f1b (diff) |
Move the directory queue into the database as well, otherwise if you
have too many directories it blows out the task queue and the whole
thing falls over. Fixes #1547.
Diffstat (limited to 'modules/server_add/models/server_add_entry.php')
-rw-r--r-- | modules/server_add/models/server_add_entry.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/server_add/models/server_add_entry.php b/modules/server_add/models/server_add_entry.php new file mode 100644 index 00000000..dfeb05a2 --- /dev/null +++ b/modules/server_add/models/server_add_entry.php @@ -0,0 +1,21 @@ +<?php defined("SYSPATH") or die("No direct script access."); +/** + * Gallery - a web based photo album viewer and editor + * Copyright (C) 2000-2010 Bharat Mediratta + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. + */ +class Server_Add_Entry_Model_Core extends ORM { +} |