Index: regtag_helper.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/reptag/regtag_helper.inc,v
retrieving revision 1.14.2.3
diff -u -r1.14.2.3 regtag_helper.inc
--- regtag_helper.inc	17 Jan 2007 16:36:42 -0000	1.14.2.3
+++ regtag_helper.inc	7 Feb 2007 09:09:13 -0000
@@ -225,7 +225,7 @@
  * function _reptag_content_field().
  * (point $text to the $field path of $content)
  */
-function &_reptag_content_field($content, $field) {
+function &_reptag_content_field(&$content, $field) {
   $text = &$content;
   $elements = explode('/', $field);
   foreach ($elements as $element) {
Index: reptag_admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/reptag/reptag_admin.inc,v
retrieving revision 1.12.2.7
diff -u -r1.12.2.7 reptag_admin.inc
--- reptag_admin.inc	6 Feb 2007 23:31:47 -0000	1.12.2.7
+++ reptag_admin.inc	7 Feb 2007 09:33:11 -0000
@@ -538,7 +538,7 @@
       '#maxlength' => 255
     );
     $form['table'][$num]['arrow'] = array(
-      '#value' => '<img src="'.drupal_get_path('module', 'reptag').'/images/arrow.png" alt="" />'
+      '#value' => '<img src="'.base_path().drupal_get_path('module', 'reptag').'/images/arrow.png" alt="" />'
     );
     if (variable_get('reptag_textarea', 1)) {
       $form['table'][$num]['replacement'] = array(
@@ -582,7 +582,7 @@
     '#suffix' => '</div>'
   );
   $form['table'][$num]['arrow'] = array(
-    '#value' => '<img src="'.drupal_get_path('module', 'reptag').'/images/arrow.png" alt="" />'
+    '#value' => '<img src="'.base_path().drupal_get_path('module', 'reptag').'/images/arrow.png" alt="" />'
   );
   if (variable_get('reptag_textarea', 1)) {
     $form['table'][$num]['replacement'] = array(
@@ -899,8 +899,8 @@
     drupal_add_js(drupal_get_path('module', 'reptag').'/reptag_helper.js');
     drupal_add_js('var reptag_id=\'\';', 'inline');
     drupal_add_js('var reptag_uid=\''.$uid.'\';', 'inline');
-    drupal_add_js('var reptag_ajax_cbpath=\''.check_url(url('reptag/ajaxcb', NULL, NULL, TRUE)).'\';', 'inline');
-    drupal_add_js('var reptag_ajax_img=\''.drupal_get_path('module', 'reptag').'/images/\';', 'inline');
+    drupal_add_js('var reptag_ajax_cbpath=\''.base_path().'?q=reptag/ajaxcb\';', 'inline');
+    drupal_add_js('var reptag_ajax_img=\''.base_path().drupal_get_path('module', 'reptag').'/images/\';', 'inline');
   }
   
   $form['buttons']['submit'] = array('#type' => 'submit', '#value' => t('Save configuration'));
Index: reptag_maintenance.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/reptag/reptag_maintenance.inc,v
retrieving revision 1.10.2.3
diff -u -r1.10.2.3 reptag_maintenance.inc
--- reptag_maintenance.inc	17 Jan 2007 22:48:15 -0000	1.10.2.3
+++ reptag_maintenance.inc	7 Feb 2007 09:41:21 -0000
@@ -156,7 +156,7 @@
   }
   
   drupal_set_title('Rep[lacement]Tags Maintenance');
-  drupal_set_html_head('<meta http-equiv="Refresh" content="0; URL=index.php?q=admin/settings/reptag/maintenance_progress">');
+  drupal_set_html_head('<meta http-equiv="Refresh" content="0; URL='.base_path().'?q=admin/settings/reptag/maintenance_progress">');
   print theme('reptag_maintenance_page', theme('progress_bar', round($percent, 1), $msg), FALSE);
   exit();
 }
Index: reptag_process.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/reptag/reptag_process.inc,v
retrieving revision 1.23.2.3
diff -u -r1.23.2.3 reptag_process.inc
--- reptag_process.inc	2 Feb 2007 23:35:26 -0000	1.23.2.3
+++ reptag_process.inc	7 Feb 2007 09:54:53 -0000
@@ -184,7 +184,7 @@
   foreach ($fields as $field) {
     
     // point to the text/string to be processed
-    $text = &_reptag_content_field($content, $field);
+    $text =& _reptag_content_field($content, $field);
     // only continue with a valid (non-empty) string
     if (!is_string($text) || empty($text)) {
       continue;
