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
de7b2702
Commit
de7b2702
authored
Jan 09, 2014
by
pupi1985
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed what seems to be a duplicated function to get a handle from a userid.
parent
3157101b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
35 deletions
+17
-35
qa-app-posts.php
qa-include/qa-app-posts.php
+7
-33
qa-app-users.php
qa-include/qa-app-users.php
+10
-2
No files found.
qa-include/qa-app-posts.php
View file @
de7b2702
...
...
@@ -34,6 +34,7 @@
require_once
QA_INCLUDE_DIR
.
'qa-app-format.php'
;
require_once
QA_INCLUDE_DIR
.
'qa-app-post-create.php'
;
require_once
QA_INCLUDE_DIR
.
'qa-app-post-update.php'
;
require_once
QA_INCLUDE_DIR
.
'qa-app-users.php'
;
require_once
QA_INCLUDE_DIR
.
'qa-util-string.php'
;
...
...
@@ -56,7 +57,7 @@
post types you can specify the $name of the post's author, which is relevant if the $userid is null.
*/
{
$handle
=
qa_
post_
userid_to_handle
(
$userid
);
$handle
=
qa_userid_to_handle
(
$userid
);
$text
=
qa_post_content_to_text
(
$content
,
$format
);
switch
(
$type
)
{
...
...
@@ -118,7 +119,7 @@
else
$setnotify
=
$oldpost
[
'notify'
];
$byhandle
=
qa_
post_
userid_to_handle
(
$byuserid
);
$byhandle
=
qa_userid_to_handle
(
$byuserid
);
$text
=
qa_post_content_to_text
(
$content
,
$format
);
switch
(
$oldpost
[
'basetype'
])
{
...
...
@@ -151,7 +152,7 @@
$oldpost
=
qa_post_get_full
(
$postid
,
'QAC'
);
if
(
$oldpost
[
'basetype'
]
==
'Q'
)
{
$byhandle
=
qa_
post_
userid_to_handle
(
$byuserid
);
$byhandle
=
qa_userid_to_handle
(
$byuserid
);
$answers
=
qa_post_get_question_answers
(
$postid
);
$commentsfollows
=
qa_post_get_question_commentsfollows
(
$postid
);
$closepost
=
qa_post_get_question_closepost
(
$postid
);
...
...
@@ -169,7 +170,7 @@
*/
{
$oldquestion
=
qa_post_get_full
(
$questionid
,
'Q'
);
$byhandle
=
qa_
post_
userid_to_handle
(
$byuserid
);
$byhandle
=
qa_userid_to_handle
(
$byuserid
);
$answers
=
qa_post_get_question_answers
(
$questionid
);
if
(
isset
(
$answerid
)
&&
!
isset
(
$answers
[
$answerid
]))
...
...
@@ -188,7 +189,7 @@
{
$oldquestion
=
qa_post_get_full
(
$questionid
,
'Q'
);
$oldclosepost
=
qa_post_get_question_closepost
(
$questionid
);
$byhandle
=
qa_
post_
userid_to_handle
(
$byuserid
);
$byhandle
=
qa_userid_to_handle
(
$byuserid
);
if
(
$closed
)
{
if
(
isset
(
$originalpostid
))
...
...
@@ -220,7 +221,7 @@
*/
{
$oldpost
=
qa_post_get_full
(
$postid
,
'QAC'
);
$byhandle
=
qa_
post_
userid_to_handle
(
$byuserid
);
$byhandle
=
qa_userid_to_handle
(
$byuserid
);
switch
(
$oldpost
[
'basetype'
])
{
case
'Q'
:
...
...
@@ -326,33 +327,6 @@
}
function
qa_post_userid_to_handle
(
$userid
)
/*
Return the handle corresponding to $userid, unless it is null in which case return null.
*/
{
if
(
isset
(
$userid
))
{
if
(
QA_FINAL_EXTERNAL_USERS
)
{
require_once
QA_INCLUDE_DIR
.
'qa-app-users.php'
;
$handles
=
qa_get_public_from_userids
(
array
(
$userid
));
return
@
$handles
[
$userid
];
}
else
{
$user
=
qa_db_single_select
(
qa_db_user_account_selectspec
(
$userid
,
true
));
if
(
!
is_array
(
$user
))
qa_fatal_error
(
'User ID could not be found: '
.
$userid
);
return
$user
[
'handle'
];
}
}
return
null
;
}
function
qa_post_content_to_text
(
$content
,
$format
)
/*
Return the textual rendition of $content in $format (used for indexing).
...
...
qa-include/qa-app-users.php
View file @
de7b2702
...
...
@@ -633,6 +633,15 @@
return
$gotuseridhandles
;
}
function
qa_userid_to_handle
(
$userid
)
/*
Return an string mapping the received userid to that user's handle (public username), or to null if not found
*/
{
$handles
=
qa_userids_to_handles
(
array
(
$userid
));
return
empty
(
$handles
)
?
null
:
$handles
[
$userid
];
}
function
qa_handles_to_userids
(
$handles
,
$exactonly
=
false
)
/*
...
...
@@ -1151,4 +1160,4 @@ in a category for which they have elevated privileges).
/*
Omit PHP closing tag to help avoid accidental output
*/
\ No newline at end of file
*/
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