diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-06 15:17:38 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-06 15:17:38 +0000 |
commit | fc05d0e128fb69ae100de9bb089727bfa7baa239 (patch) | |
tree | 67132610d14a0e8c00ae850e7a3102e0d6fb712f | |
parent | 6b6aedc698b662b7f16e9d4d262284b14cb718c0 (diff) | |
download | elgg-fc05d0e128fb69ae100de9bb089727bfa7baa239.tar.gz elgg-fc05d0e128fb69ae100de9bb089727bfa7baa239.tar.bz2 |
Changed 'system','gc' to 'gc','system'
git-svn-id: https://code.elgg.org/elgg/trunk@3115 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/garbagecollector/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/garbagecollector/start.php b/mod/garbagecollector/start.php index eaef8846f..8e4445e83 100644 --- a/mod/garbagecollector/start.php +++ b/mod/garbagecollector/start.php @@ -52,7 +52,7 @@ // Now, because we are nice, trigger a plugin hook to let other plugins do some GC $rv = true; $period = get_plugin_setting('period','garbagecollector'); - trigger_plugin_hook('system', 'gc', array('period' => $period)); + trigger_plugin_hook('gc', 'system', array('period' => $period)); // Now we optimize all tables $tables = get_db_tables(); |