Moved the event logging just before the action.

master
Loic d'Anterroches 2010-04-14 13:43:58 +02:00
parent bbc29c889f
commit 8280add935
1 changed files with 2 additions and 1 deletions

View File

@ -42,13 +42,14 @@ class IDF_Plugin_SyncGit
*/
static public function entry($signal, &$params)
{
Pluf_Log::event('IDF_Plugin_SyncGit called.');
// First check for the single mandatory config variable.
if (!Pluf::f('idf_plugin_syncgit_sync_file', false)) {
Pluf_Log::debug('IDF_Plugin_SyncGit plugin not configured.');
return;
}
if ($signal != 'gitpostupdate.php::run') {
Pluf_Log::event('IDF_Plugin_SyncGit', 'create',
Pluf::f('idf_plugin_syncgit_sync_file'));
@touch(Pluf::f('idf_plugin_syncgit_sync_file'));
@chmod(Pluf::f('idf_plugin_syncgit_sync_file'), 0777);
} else {