Index: README.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/google_admanager/README.txt,v
retrieving revision 1.2.4.1
diff -u -p -r1.2.4.1 README.txt
--- README.txt	30 Nov 2009 11:53:37 -0000	1.2.4.1
+++ README.txt	2 Jan 2010 17:42:01 -0000
@@ -17,14 +17,17 @@ Installation
 2. Go to admin/settings/google_admanager and fill in the form
 3. For each submitted Ad Slot name, you will get find a block 
    at admin/build/block which you can add to a region
-4. Add the following code:
 
-Insert the following into template.php
---------------------------------------
+Upgrade
+=============
+Previous versions of the google_admanager module required you to place some
+code into the theme's template.php file, but this version DOES NOT.
+Please remove such code from the template file before you upgrade. 
+
+First BACKUP you theme's template.php file, then remove the following code if it exists. 
 
 function _phptemplate_variables($hook, $vars) {
   if ($hook == 'page') {
-
     if (module_exists('google_admanager')) {
       $vars['scripts'] .= google_admanager_add_js();
     }
@@ -32,17 +35,18 @@ function _phptemplate_variables($hook, $
     return $vars;
   }
   return array();
-} 
+}
 
 
-Insert the following into template.php into the function phptemplate_preprocess_page(&$vars)
---------------------------------------
+function phptemplate_preprocess_page(&$vars) {
 
   // Insert Google Ad Manager scripts into header
   if (module_exists('google_admanager')) {
-  $vars['scripts'] .= google_admanager_add_js();
+    $vars['scripts'] .= google_admanager_add_js();
   }
 
+}
+
 
 Support
 =======
@@ -50,4 +54,4 @@ Offcial Drupal project page
 http://drupal.org/project/google_admanager
 
 File a bug or support request at 
-http://drupal.org/project/issues/google_admanager
\ No newline at end of file
+http://drupal.org/project/issues/google_admanager
