Recent content by Stephen Melton

  1. Stephen Melton

    XF 1.1 Where are post links converted to a page number?

    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.
  2. Stephen Melton

    XF 1.1 Where are post links converted to a page number?

    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...
  3. Stephen Melton

    Accessing post and thread variables on search result page

    Aha, exactly what I needed! Thanks Jake my man, you've done it again!
  4. Stephen Melton

    Accessing post and thread variables on search result 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">...
  5. Stephen Melton

    How is email pulled from the database?

    Fantastic, thank you very much for the input!
  6. Stephen Melton

    How is email pulled from the database?

    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...
Top Bottom