Index: faq.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/faq/faq.module,v
retrieving revision 1.1.4.45
diff -u -r1.1.4.45 faq.module
--- faq.module	3 May 2007 08:57:42 -0000	1.1.4.45
+++ faq.module	3 May 2007 15:37:35 -0000
@@ -233,6 +233,7 @@
 function faq_settings_page($op = NULL, $aid = NULL) {
 
   $output .= drupal_get_form('faq_general_settings_form');
+  $output .= faq_version();
 
   return $output;
 }
@@ -1620,3 +1621,7 @@
 
 		return theme('item_list', $items);
 }
+
+function faq_version(){
+  return str_replace(array('$RCSf'.'ile:', ',v', '$Re'.'vision: ', '$Da'.'te: ', '$'), '', '<p style="font-size:x-small">$RCSfile: ,v $ version: <b>$Revision: $</b>, $Date: $</p>');
+}

