Index: SEOChecklist.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/seo_checklist/SEOChecklist.module,v
retrieving revision 1.5
diff -u -p -w -r1.5 SEOChecklist.module
--- SEOChecklist.module	26 Jan 2009 21:26:04 -0000	1.5
+++ SEOChecklist.module	18 Feb 2009 17:57:01 -0000
@@ -156,7 +156,7 @@ $form['frm_Check_existing'] = array(
 						//Check for module already existance
 						$module_name=$row->module;
 						$exist_f=0;
-						if(module_exists($module_name))
+						if(module_exists(strtolower($module_name)))
 						$exist_f=1;
 				
 				$page_contents.='<div class="form-item"><label class="option"> <input type="checkbox" name="SEOChecklist_nodetypes['.$row->id.']" id="edit-SEOChecklist-nodetypes-'.$row->id.'" value="'.$row->id.'"  '.$option_checked.'  class="form-checkbox" /> '.$row->name;				
@@ -197,6 +197,7 @@ $form['frm_Check_existing'] = array(
 
 							$option_val=$row->option_checked;
 							$option_checked='';
+
 							if($option_val==$id)
 							$option_checked='checked="checked"';
 
@@ -208,7 +209,7 @@ $form['frm_Check_existing'] = array(
 							//Check for module already existance
 							$module_name=$row->module;
 							$exist_f=0;
-							if(module_exists($module_name))
+							if(module_exists(strtolower($module_name)))
 							$exist_f=1;
 
 
@@ -336,7 +337,7 @@ function SEOChecklist_admin_settings_sub
 		{
 			$module_name=$data->module;
 			$id=$data->id;
-			if(module_exists($module_name))
+			if(module_exists(strtolower($module_name)))
 			{
 				db_query("update {seo_checklist} set option_checked=".$id.",date_changed='".$today."' where id=".$id);			
 			}
