mirror of https://github.com/pikami/palm-paste.git
Small change to make the PHP engine happy
This commit is contained in:
parent
b37b3264d7
commit
7d3230f1d5
|
@ -12,7 +12,8 @@ if(GetUsersIDBySession($_COOKIE["pp_sid"],$_COOKIE["pp_skey"]) == -1){
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
$stmt = $conn->prepare('SELECT * FROM pastes WHERE owner=:own');
|
$stmt = $conn->prepare('SELECT * FROM pastes WHERE owner=:own');
|
||||||
$stmt->bindParam(':own', GetUsersIDBySession($_COOKIE["pp_sid"],$_COOKIE["pp_skey"]));
|
$own = GetUsersIDBySession($_COOKIE["pp_sid"],$_COOKIE["pp_skey"]);
|
||||||
|
$stmt->bindParam(':own', $own);
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
if($stmt->rowCount()>0){
|
if($stmt->rowCount()>0){
|
||||||
echo "<table id=\"tablepastes\" class=\"table table-striped\" style=\"width:100%\">";
|
echo "<table id=\"tablepastes\" class=\"table table-striped\" style=\"width:100%\">";
|
||||||
|
|
Loading…
Reference in New Issue