Aha, found it!
If anyone else is curious, it's the function
public function getPostSpecificRedirect(array $post, array $thread,
$redirectType = XenForo_ControllerResponse_Redirect::SUCCESS
)
In XenForo/ControllerPublic/Post.php.
Heya Everyone,
I was wondering where a URL like this:
http://forumurl.com/index.php?posts/1173269/
Is converted into this:
http://forumurl.com/index.php?threads/thread-title.83010/page-16#post-1173269
Specifically, I'm looking for which part of the code takes a post ID and finds the page...
Hello there!
I'm looking to be able to access the results of $post and $thread on the search result page, which are a part of $results. It looks like the results page is doing:
<ol class="searchResultsList">
<xen:foreach loop="$results" value="$result" i="$i">...
Hello everyone,
I was wondering where in the code a user's email address is referenced in the db. My goal is to remove email's being stored in the DB (I can make a soap call to get their email from another place they've registered) and replace the spots where it's pulled with the soap call...