-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisibility.php
61 lines (56 loc) · 2.2 KB
/
visibility.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/*
* visibility.php
* Change the visibility of a list between public/private
*
* Copyright 2011 caprenter <[email protected]>
*
* This file is part of Setlistr.
*
* Setlistr is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Setlistr is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Setlistr. If not, see <http://www.gnu.org/licenses/>.
*
* Setlistr relies on other free software products. See the README.txt file
* for more details.
*/
//Initiate the user access script
require_once "phpUserClass/access.class.beta.php";
$user = new flexibleAccess();
//Check user is logged in
if ( $user->is_loaded() ) {
//Process form. Check and sanitise variables
//if (!empty($_POST['show']) && !empty($_POST['list'])){
if (!empty($_POST['list'])) {
//echo $_POST['list'];
if (!isset($_POST['show'])) {
$show = 0;
} else {
$show = filter_var($_POST['show'], FILTER_SANITIZE_NUMBER_INT);
}
$list_id = filter_var($_POST['list'], FILTER_SANITIZE_NUMBER_INT);
//echo $list_id;
//echo $show;
//var_dump(filter_var($show, FILTER_VALIDATE_INT));
//die;
if (filter_var($list_id, FILTER_VALIDATE_INT) && ($show == 0 || $show ==1)) {
$query = "UPDATE lists SET public = " . $show . " WHERE list_id = " . $list_id;
//echo $query;
//die;
mysql_query("UPDATE lists SET public = " . $show . " WHERE list_id = " . $list_id );
}
}
//Redirect to home page, logged in, and with the same list.
header('Location: index.php');
}
//Redirect to home page, logged in, and with the same list.
header('Location: index.php');