1
0

Change the add item processing to be consistent with the gallery3 server add.

This commit is contained in:
Tim Almdal 2009-12-31 18:38:17 -08:00
parent 9484bea83f
commit 4032150e69

View File

@ -54,11 +54,10 @@ class G3_Handlers_Controller extends Controller {
$path = $this->input->get("path");
if ($_POST) {
try {
unset($_POST["do_edit"]);
$data = array(
"title" => $_POST["title"],
"name" => g3_client::sanitize_title($_POST["name"], $_POST["title"]),
"slug" => g3_client::sanitize_title($_POST["slug"], $_POST["title"]),
"name" => $_POST["name"],
"slug" => g3_client::sanitize_title($_POST["slug"], $_POST["name"]),
"description" => $_POST["description"]);
if ($_FILES) {
@ -71,7 +70,7 @@ class G3_Handlers_Controller extends Controller {
}
$path = !empty($path) ? $path . "/" : $path;
$result = G3Remote::instance()->add_resource("gallery/$path{$data['slug']}", $data);
$result = G3Remote::instance()->add_resource("gallery/$path{$data['name']}", $data);
if ($result->status == "OK") {
$form = null;
$result = "success";