Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Q
question2answer
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
outils
question2answer
Commits
1086d15c
Commit
1086d15c
authored
Oct 29, 2014
by
Scott
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'pr/107' into dev
parents
ecb38829
a72ccc57
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
5 deletions
+16
-5
qa-app-favorites.php
qa-include/qa-app-favorites.php
+15
-4
qa-page-user-profile.php
qa-include/qa-page-user-profile.php
+1
-1
No files found.
qa-include/qa-app-favorites.php
View file @
1086d15c
...
...
@@ -30,16 +30,27 @@
}
/**
* Set an entity to be favorited or removed from favorites. Handles event reporting.
*
* @param int $userid ID of user assigned to the favorite
* @param string $handle Username of user
* @param string $cookieid Cookie ID of user
* @param string $entitytype Entity type code (one of QA_ENTITY_* constants)
* @param string $entityid ID of the entity being favorited (e.g. postid for questions)
* @param bool $favorite Whether to add favorite (true) or remove favorite (false)
*/
function
qa_user_favorite_set
(
$userid
,
$handle
,
$cookieid
,
$entitytype
,
$entityid
,
$favorite
)
/*
If $favorite is true, set $entitytype and $entityid to be favorites of $userid with $handle and $cookieid, otherwise
remove them from its favorites list. Handles event reporting.
*/
{
require_once
QA_INCLUDE_DIR
.
'qa-db-favorites.php'
;
require_once
QA_INCLUDE_DIR
.
'qa-app-limits.php'
;
require_once
QA_INCLUDE_DIR
.
'qa-app-updates.php'
;
// Make sure the user is not favoriting themselves
if
(
$entitytype
==
QA_ENTITY_USER
&&
$userid
==
$entityid
)
{
return
;
}
if
(
$favorite
)
qa_db_favorite_create
(
$userid
,
$entitytype
,
$entityid
);
else
...
...
qa-include/qa-page-user-profile.php
View file @
1086d15c
...
...
@@ -347,7 +347,7 @@
$qa_content
[
'title'
]
=
qa_lang_html_sub
(
'profile/user_x'
,
$userhtml
);
$qa_content
[
'error'
]
=
@
$errors
[
'page'
];
if
(
isset
(
$loginuserid
)
&&
!
QA_FINAL_EXTERNAL_USERS
)
{
if
(
isset
(
$loginuserid
)
&&
$loginuserid
!=
$useraccount
[
'userid'
]
&&
!
QA_FINAL_EXTERNAL_USERS
)
{
$favoritemap
=
qa_get_favorite_non_qs_map
();
$favorite
=
@
$favoritemap
[
'user'
][
$useraccount
[
'userid'
]];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment