summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2010-10-03 22:10:05 -0700
committerBharat Mediratta <bharat@menalto.com>2010-10-03 22:10:05 -0700
commitdf378fcca84bb09a90d640c6a500b02b9b3b9f89 (patch)
tree7d8ea0e40afb3709a9d393cd280a15aca7fa19c1
parent6decb90eaf666197627d18eba29c3a0bc1de5dc9 (diff)
Don't wrap the action in url::site() -- form::open() will do that for us. Fixes #1417.
-rw-r--r--modules/gallery/libraries/InPlaceEdit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/libraries/InPlaceEdit.php b/modules/gallery/libraries/InPlaceEdit.php
index 7e631ab9..42eb2ffe 100644
--- a/modules/gallery/libraries/InPlaceEdit.php
+++ b/modules/gallery/libraries/InPlaceEdit.php
@@ -70,7 +70,7 @@ class InPlaceEdit_Core {
public function render() {
$v = new View("in_place_edit.html");
- $v->action = url::site($this->action);
+ $v->action = $this->action;
$v->form = $this->form;
$v->errors = $this->errors;
foreach ($v->errors as $key => $error) {