2011-10-02 14:24:02 +04:00
|
|
|
<?php
|
2011-09-26 00:32:08 +04:00
|
|
|
require_once('../../../lib/base.php');
|
2011-10-06 23:22:01 +04:00
|
|
|
OC_JSON::checkLoggedIn();
|
|
|
|
OC_JSON::checkAppEnabled('gallery');
|
2011-09-26 00:32:08 +04:00
|
|
|
|
|
|
|
$stmt = OC_DB::prepare('INSERT INTO *PREFIX*gallery_albums ("uid_owner", "album_name") VALUES ("'.OC_User::getUser().'", "'.$_GET['album_name'].'")');
|
|
|
|
$stmt->execute(array());
|
|
|
|
|
2011-10-06 23:22:01 +04:00
|
|
|
OC_JSON::success(array('name' => $_GET['album_name']));
|
2011-09-26 00:32:08 +04:00
|
|
|
|
|
|
|
?>
|