aboutsummaryrefslogtreecommitdiffstats
path: root/apps/gallery/ajax/createAlbum.php
blob: 3a490bdc3bd35d83db91fd8c260202e978271f4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
require_once('../../../lib/base.php');

if( !OC_User::isLoggedIn()){
	echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => 'You need to log in.')));
	exit();
}

$stmt = OC_DB::prepare('INSERT INTO *PREFIX*gallery_albums ("uid_owner", "album_name") VALUES ("'.OC_User::getUser().'", "'.$_GET['album_name'].'")');
$stmt->execute(array());

echo json_encode(array( 'status' => 'success', 'name' => $_GET['album_name']));

?>