Lars chat #107
BIN
website/public/img/avatar-standard.png
Normal file
BIN
website/public/img/avatar-standard.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 98 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 24 KiB |
@@ -7,7 +7,7 @@ function selectAllFriends($userID) {
|
|||||||
`username`,
|
`username`,
|
||||||
IFNULL(
|
IFNULL(
|
||||||
`profilepicture`,
|
`profilepicture`,
|
||||||
'../img/notbad.jpg'
|
'../img/avatar-standard.png'
|
||||||
) AS profilepicture,
|
) AS profilepicture,
|
||||||
`onlinestatus`,
|
`onlinestatus`,
|
||||||
`role`
|
`role`
|
||||||
@@ -38,7 +38,7 @@ function selectAllFriendRequests() {
|
|||||||
`username`,
|
`username`,
|
||||||
IFNULL(
|
IFNULL(
|
||||||
`profilepicture`,
|
`profilepicture`,
|
||||||
'../img/notbad.jpg'
|
'../img/avatar-standard.png'
|
||||||
) AS profilepicture,
|
) AS profilepicture,
|
||||||
`onlinestatus`,
|
`onlinestatus`,
|
||||||
`role`
|
`role`
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ function getHeaderInfo() {
|
|||||||
`lname`,
|
`lname`,
|
||||||
IFNULL(
|
IFNULL(
|
||||||
`profilepicture`,
|
`profilepicture`,
|
||||||
'img/notbad.jpg'
|
'img/avatar-standard.png'
|
||||||
) AS profilepicture
|
) AS profilepicture
|
||||||
FROM
|
FROM
|
||||||
`user`
|
`user`
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ function selectUser($userID) {
|
|||||||
`username`,
|
`username`,
|
||||||
IFNULL(
|
IFNULL(
|
||||||
`profilepicture`,
|
`profilepicture`,
|
||||||
'../img/notbad.jpg'
|
'../img/avatar-standard.png'
|
||||||
) AS profilepicture,
|
) AS profilepicture,
|
||||||
`bio`,
|
`bio`,
|
||||||
`role`,
|
`role`,
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
// Set default values of a friend.
|
// Set default values of a friend.
|
||||||
$username = $friend["username"];
|
$username = $friend["username"];
|
||||||
$userID = $friend["userID"];
|
$userID = $friend["userID"];
|
||||||
$pf = "img/notbad.jpg";
|
$pf = "img/avatar-standard.png";
|
||||||
|
|
||||||
// Change values if needed.
|
// Change values if needed.
|
||||||
if (!empty($friend["profilepicture"]))
|
if (!empty($friend["profilepicture"]))
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
// Set default values of a friend.
|
// Set default values of a friend.
|
||||||
$username = $friend["username"];
|
$username = $friend["username"];
|
||||||
$extraItem = "";
|
$extraItem = "";
|
||||||
$pf = "img/notbad.jpg";
|
$pf = "img/avatar-standard.png";
|
||||||
|
|
||||||
// Change values if needed.
|
// Change values if needed.
|
||||||
if (!empty($friend["profilepicture"]))
|
if (!empty($friend["profilepicture"]))
|
||||||
@@ -95,7 +95,7 @@
|
|||||||
// Set default values of a friend.
|
// Set default values of a friend.
|
||||||
$name = $group["name"];
|
$name = $group["name"];
|
||||||
$extraItem = "";
|
$extraItem = "";
|
||||||
$picture = "img/notbad.jpg";
|
$picture = "img/avatar-standard.png";
|
||||||
|
|
||||||
// Change values if needed.
|
// Change values if needed.
|
||||||
if (!empty($group["picture"]))
|
if (!empty($group["picture"]))
|
||||||
|
|||||||
Reference in New Issue
Block a user