summaryrefslogtreecommitdiff
path: root/modules/gallery/controllers/albums.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2010-08-01 08:31:09 -0700
committerTim Almdal <tnalmdal@shaw.ca>2010-08-01 08:31:09 -0700
commita4531707274318496bb7a4477d940030d870f133 (patch)
tree6715be3db83d7f834676a0b2c7a38c9bd58ce1a5 /modules/gallery/controllers/albums.php
parentfc580037e797fad48b49fcffa7aa69dca8761972 (diff)
parent7607e1f932dda53144792d0b7e8674a34fbc7f9a (diff)
Merge branch 'dialog' of github.com:gallery/gallery3 into dialog
Diffstat (limited to 'modules/gallery/controllers/albums.php')
-rw-r--r--modules/gallery/controllers/albums.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/gallery/controllers/albums.php b/modules/gallery/controllers/albums.php
index 584e4f15..f3f5dee3 100644
--- a/modules/gallery/controllers/albums.php
+++ b/modules/gallery/controllers/albums.php
@@ -115,7 +115,7 @@ class Albums_Controller extends Items_Controller {
json::reply(array("result" => "success", "location" => $album->url()));
} else {
- json::reply(array("result" => "error", "form" => (string) $form));
+ print $form;
}
}
@@ -159,7 +159,7 @@ class Albums_Controller extends Items_Controller {
json::reply(array("result" => "success"));
}
} else {
- json::reply(array("result" => "error", "form" => (string) $form));
+ json::reply(array("result" => "error", "html" => (string)$form));
}
}
@@ -168,7 +168,7 @@ class Albums_Controller extends Items_Controller {
access::required("view", $album);
access::required("add", $album);
- json::reply(array("form" => (string) album::get_add_form($album)));
+ print album::get_add_form($album);
}
public function form_edit($album_id) {
@@ -176,6 +176,6 @@ class Albums_Controller extends Items_Controller {
access::required("view", $album);
access::required("edit", $album);
- json::reply(array("form" => (string) album::get_edit_form($album)));
+ print album::get_edit_form($album);
}
}