Index: flag.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/flag/Attic/flag.module,v
retrieving revision 1.11.2.68
diff -u -r1.11.2.68 flag.module
--- flag.module	14 Mar 2009 06:13:54 -0000	1.11.2.68
+++ flag.module	16 Mar 2009 22:41:19 -0000
@@ -78,7 +78,7 @@
 function flag_init() {
   $path = drupal_get_path('module', 'flag');
   if (module_exists('trigger')) {
-    include_once $path .'/flag.actions.inc';
+    include_once $path .'/includes/flag.actions.inc';
   }
   if (module_exists('token')) {
     include_once $path .'/includes/flag.token.inc';
Index: flag.actions.inc
===================================================================
RCS file: flag.actions.inc
diff -N flag.actions.inc
--- flag.actions.inc	30 Sep 2008 03:08:49 -0000	1.2.2.11
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,25 +0,0 @@
-<?php
-// $Id: flag.actions.inc,v 1.2.2.11 2008/09/30 03:08:49 quicksketch Exp $
-
-/**
- * @file
- * Hooks for flag actions.
- */
-
-/**
- * Implementation of hook_hook_info().
- */
-function flag_hook_info() {
-  return array(
-    'flag' => array(
-      'flag' => array(
-        'flag' => array(
-          'runs when' => t('Content has been flagged'),
-        ),
-        'unflag' => array(
-          'runs when' => t('Content has been unflagged')
-        ),
-      ),
-    ),
-  );
-}
Index: includes/flag.actions.inc
===================================================================
RCS file: includes/flag.actions.inc
diff -N includes/flag.actions.inc
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ includes/flag.actions.inc	1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,25 @@
+<?php
+// $Id: flag.actions.inc,v 1.2.2.11 2008/09/30 03:08:49 quicksketch Exp $
+
+/**
+ * @file
+ * Hooks for flag actions.
+ */
+
+/**
+ * Implementation of hook_hook_info().
+ */
+function flag_hook_info() {
+  return array(
+    'flag' => array(
+      'flag' => array(
+        'flag' => array(
+          'runs when' => t('Content has been flagged'),
+        ),
+        'unflag' => array(
+          'runs when' => t('Content has been unflagged')
+        ),
+      ),
+    ),
+  );
+}
