New Standard avatar

This commit is contained in:
Marijn Jansen
2017-01-24 14:00:55 +01:00
parent 4579b98eb8
commit c1359920e0
7 changed files with 7 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ function selectAllFriends($userID) {
`username`,
IFNULL(
`profilepicture`,
'../img/notbad.jpg'
'../img/avatar-standard.png'
) AS profilepicture,
`onlinestatus`,
`role`
@@ -38,7 +38,7 @@ function selectAllFriendRequests() {
`username`,
IFNULL(
`profilepicture`,
'../img/notbad.jpg'
'../img/avatar-standard.png'
) AS profilepicture,
`onlinestatus`,
`role`

View File

@@ -6,7 +6,7 @@ function getHeaderInfo() {
`lname`,
IFNULL(
`profilepicture`,
'img/notbad.jpg'
'img/avatar-standard.png'
) AS profilepicture
FROM
`user`

View File

@@ -23,7 +23,7 @@ function selectUser($userID) {
`username`,
IFNULL(
`profilepicture`,
'../img/notbad.jpg'
'../img/avatar-standard.png'
) AS profilepicture,
`bio`,
`role`,