Index: node_limitnumber.module
===================================================================
--- node_limitnumber.module	(revision 569)
+++ node_limitnumber.module	(working copy)
@@ -13,7 +13,7 @@
  */ 
 function node_limitnumber_help ($section) {
 	if ($section == 'admin/help#modulename' ) {
-		include_once ('node_limitnumber_abstract.inc');
+		include_once (drupal_get_path('module', 'node_limitnumber') .'/node_limitnumber_abstract.inc');
 		echo ($abstract);
 	}
 }
@@ -41,8 +41,8 @@
 	if (arg(3) == 'delete' && arg(4)) {
 		node_limitnumber_admin_delete_limit();
 	}
-	include_once ('node_limitnumber_abstract.inc');
-	include_once ('node_limitnumber.inc');
+	include_once (drupal_get_path('module', 'node_limitnumber') .'/node_limitnumber_abstract.inc');
+	include_once (drupal_get_path('module', 'node_limitnumber') .'/node_limitnumber.inc');
 	$output = $abstract . drupal_get_form('node_limitnumber_admin_add_form'); // Generate the "add rule" part
 	$output .= drupal_get_form('node_limitnumber_admin_modify_form');// Generate the "modify rule" part
 	return $output;
@@ -120,7 +120,7 @@
 	* This is where the real job gets done.
 	*/
 function node_limitnumber_nodeapi ($node, $op) {
-	include_once ('node_limitnumber.inc');
+	include_once (drupal_get_path('module', 'node_limitnumber') .'/node_limitnumber.inc');
 	global $user;
 	if (($op == 'prepare' || $op == 'submit') && $user->uid != 1 && !$node->nid) {
 		$limit = _get_limits_for_user ($user, $node->type);
