Author: FabianLange
Date: 2010-02-06 12:14:40 +0100 (Sat, 06 Feb 2010)
New Revision: 27616

Modified:
   branches/1.2/lib/util/sfBrowserBase.class.php
   branches/1.3/lib/util/sfBrowserBase.class.php
   branches/1.4/lib/util/sfBrowserBase.class.php
Log:
[1.2, 1.3, 1.4] passed the changeStack option in ->get() and ->post() calls of 
sfBrowserBase to the delegated ->call() (fixes #4271)

Modified: branches/1.2/lib/util/sfBrowserBase.class.php
===================================================================
--- branches/1.2/lib/util/sfBrowserBase.class.php       2010-02-06 05:00:03 UTC 
(rev 27615)
+++ branches/1.2/lib/util/sfBrowserBase.class.php       2010-02-06 11:14:40 UTC 
(rev 27616)
@@ -185,7 +185,7 @@
    */
   public function get($uri, $parameters = array(), $changeStack = true)
   {
-    return $this->call($uri, 'get', $parameters);
+    return $this->call($uri, 'get', $parameters, $changeStack);
   }
 
   /**
@@ -199,7 +199,7 @@
    */
   public function post($uri, $parameters = array(), $changeStack = true)
   {
-    return $this->call($uri, 'post', $parameters);
+    return $this->call($uri, 'post', $parameters, $changeStack);
   }
 
   /**

Modified: branches/1.3/lib/util/sfBrowserBase.class.php
===================================================================
--- branches/1.3/lib/util/sfBrowserBase.class.php       2010-02-06 05:00:03 UTC 
(rev 27615)
+++ branches/1.3/lib/util/sfBrowserBase.class.php       2010-02-06 11:14:40 UTC 
(rev 27616)
@@ -186,7 +186,7 @@
    */
   public function get($uri, $parameters = array(), $changeStack = true)
   {
-    return $this->call($uri, 'get', $parameters);
+    return $this->call($uri, 'get', $parameters, $changeStack);
   }
 
   /**
@@ -200,7 +200,7 @@
    */
   public function post($uri, $parameters = array(), $changeStack = true)
   {
-    return $this->call($uri, 'post', $parameters);
+    return $this->call($uri, 'post', $parameters, $changeStack);
   }
 
   /**

Modified: branches/1.4/lib/util/sfBrowserBase.class.php
===================================================================
--- branches/1.4/lib/util/sfBrowserBase.class.php       2010-02-06 05:00:03 UTC 
(rev 27615)
+++ branches/1.4/lib/util/sfBrowserBase.class.php       2010-02-06 11:14:40 UTC 
(rev 27616)
@@ -186,7 +186,7 @@
    */
   public function get($uri, $parameters = array(), $changeStack = true)
   {
-    return $this->call($uri, 'get', $parameters);
+    return $this->call($uri, 'get', $parameters, $changeStack);
   }
 
   /**
@@ -200,7 +200,7 @@
    */
   public function post($uri, $parameters = array(), $changeStack = true)
   {
-    return $this->call($uri, 'post', $parameters);
+    return $this->call($uri, 'post', $parameters, $changeStack);
   }
 
   /**

-- 
You received this message because you are subscribed to the Google Groups 
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/symfony-svn?hl=en.

Reply via email to