Page Time: 0.3671s

Memory: 13.7365 MB (Peak: 19.4732 MB)

Queries (16, time: 0.0335s, 9.1%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000141
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		NULL AS thread_read_date,
    		0 AS thread_reply_banned,
    		0 AS thread_is_watched,
    		'' AS draft_message, NULL AS draft_extra
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    WHERE thread.thread_id = ?
    Params: 1177
    Run Time: 0.000573
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  3. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = forum.node_id)
    WHERE node.node_id = ?
    Params: 98
    Run Time: 0.000236
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  4. SELECT post.*
    	,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (1,2,5,6,7,8,10)) as positive_rating_count
    	
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (11,12,13)) as negative_rating_count
    	
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (14,3,4,9)) as neutral_rating_count
    	,
    pr2.rating, 
    	pr.*, post.post_id
    FROM xf_post AS post
    	
    		LEFT JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id AND thread.post_sticky = 1)
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    LEFT JOIN dark_postrating pr2 ON (post.post_id = pr2.post_id and pr2.user_id = 0)
    LEFT JOIN (
    select 
    pivot_pr.post_id
    , sum(case when pivot_pr.rating = 1 then 1 else 0 end) dark_postrating_1_count
    , sum(case when pivot_pr.rating = 14 then 1 else 0 end) dark_postrating_14_count
    , sum(case when pivot_pr.rating = 2 then 1 else 0 end) dark_postrating_2_count
    , sum(case when pivot_pr.rating = 3 then 1 else 0 end) dark_postrating_3_count
    , sum(case when pivot_pr.rating = 4 then 1 else 0 end) dark_postrating_4_count
    , sum(case when pivot_pr.rating = 5 then 1 else 0 end) dark_postrating_5_count
    , sum(case when pivot_pr.rating = 6 then 1 else 0 end) dark_postrating_6_count
    , sum(case when pivot_pr.rating = 7 then 1 else 0 end) dark_postrating_7_count
    , sum(case when pivot_pr.rating = 8 then 1 else 0 end) dark_postrating_8_count
    , sum(case when pivot_pr.rating = 9 then 1 else 0 end) dark_postrating_9_count
    , sum(case when pivot_pr.rating = 10 then 1 else 0 end) dark_postrating_10_count
    , sum(case when pivot_pr.rating = 11 then 1 else 0 end) dark_postrating_11_count
    , sum(case when pivot_pr.rating = 12 then 1 else 0 end) dark_postrating_12_count
    , sum(case when pivot_pr.rating = 13 then 1 else 0 end) dark_postrating_13_count
    
    		
    from dark_postrating pivot_pr 
    use index (`post_id_rating`)
    left join xf_post pivot_post on (pivot_pr.post_id = pivot_post.post_id)
    where pivot_post.thread_id = 1177
    group by pivot_pr.post_id
    ) pr on (pr.post_id = post.post_id)
    
    
    WHERE post.thread_id = ?
    	AND (((post.message_state IN ('visible'))
    	 AND (post.position >= 0 AND post.position < 20) ) OR (post.post_id = thread.first_post_id AND thread.post_sticky))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 1177
    Run Time: 0.005996
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYpostrefPRIMARY,thread_id_post_date,thread_id_positionthread_id_post_date4const36Using where; Using filesort
    PRIMARYthreadeq_refPRIMARYPRIMARY4viregfum_db.post.thread_id1Using where
    PRIMARYbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,viregfum_db.post.post_id1Using where
    PRIMARYusereq_refPRIMARYPRIMARY4viregfum_db.post.user_id1 
    PRIMARYuser_profileeq_refPRIMARYPRIMARY4viregfum_db.post.user_id1 
    PRIMARYuser_privacyeq_refPRIMARYPRIMARY4viregfum_db.post.user_id1 
    PRIMARYsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,viregfum_db.post.user_id1Using where
    PRIMARYsession_activityeq_refPRIMARYPRIMARY22viregfum_db.post.user_id,func1Using where
    PRIMARYpr2eq_refpost_id_user_id,post_id_rating,user_id_ratingpost_id_user_id8viregfum_db.post.post_id,const1 
    PRIMARY<derived5>refkey0key05viregfum_db.post.post_id2 
    LATERAL DERIVEDpivot_prrefpost_id_ratingpost_id_rating4viregfum_db.post.post_id1Using index
    LATERAL DERIVEDpivot_posteq_refPRIMARY,thread_id_post_date,thread_id_positionPRIMARY4viregfum_db.pivot_pr.post_id1Using where
    DEPENDENT SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4viregfum_db.post.user_id1Using index condition
    DEPENDENT SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4viregfum_db.post.user_id1Using index condition
    DEPENDENT SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4viregfum_db.post.user_id1Using index condition
  5. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, data.file_path, data.width, data.height, data.thumbnail_width, data.thumbnail_height
    FROM xf_attachment AS attachment
    INNER JOIN xf_attachment_data AS data ON
    	(data.data_id = attachment.data_id)
    WHERE attachment.content_type = ?
    	AND attachment.content_id IN (36640, 38042, 39095, 52841)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.001985
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 73Using index condition
    SIMPLEdataeq_refPRIMARYPRIMARY4viregfum_db.attachment.data_id1 
  6. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 1177
    Run Time: 0.000229
  7. SELECT thread.*
    	,
    		0 AS thread_reply_banned
    FROM xf_thread AS thread
    
    WHERE thread.thread_id = ?
    Params: 1177
    Run Time: 0.000330
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
  8. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = forum.node_id)
    WHERE node.node_id = ?
    Params: 98
    Run Time: 0.000293
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  9. INSERT INTO xf_session_activity
    	(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
    VALUES
    	(?, ?, ?, ?, ?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE
    	ip = VALUES(ip),
    	controller_name = VALUES(controller_name),
    	controller_action = VALUES(controller_action),
    	view_state = VALUES(view_state),
    	params = VALUES(params),
    	view_date = VALUES(view_date),
    	robot_key = VALUES(robot_key)
    Params: 0, , , XenForo_ControllerPublic_Thread, Index, valid, thread_id=1177, 1711640543,
    Run Time: 0.007584
  10. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: uix_nodeCache
    Run Time: 0.000249
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLE       Impossible WHERE noticed after reading const tables
  11. SELECT *
    FROM uix_node_layout
    Run Time: 0.000180
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuix_node_layoutALL    2 
  12. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: uix_nodeCache
    Run Time: 0.000189
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLE       Impossible WHERE noticed after reading const tables
  13. SELECT node.*,
    	node_field.uix_node_icons,
    	node_field.uix_styling,
    	node_field.collapsed,
    	node_field.inheritClass,
    	node_field.inheritStyling
    FROM xf_node AS node
    LEFT JOIN uix_node_fields AS node_field ON (node.node_id = node_field.node_id)
    Run Time: 0.000442
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeALL    105 
    SIMPLEnode_fieldeq_refPRIMARYPRIMARY4viregfum_db.node.node_id1 
  14. SELECT session_activity.*
    	,
    	user.*
    FROM xf_session_activity AS session_activity
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = session_activity.user_id)
    WHERE (session_activity.view_date > 1711638143)
    ORDER BY session_activity.view_date DESC
    Run Time: 0.013783
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsession_activityrangeview_dateview_date4 494Using where
    SIMPLEusereq_refPRIMARYPRIMARY4viregfum_db.session_activity.user_id1 
  15. SELECT session_activity.*
    	,
    	user.*
    FROM xf_session_activity AS session_activity
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = session_activity.user_id)
    WHERE (session_activity.view_date > 1711638143)
    ORDER BY session_activity.view_date DESC
    Run Time: 0.001102
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsession_activityrangeview_dateview_date4 494Using where
    SIMPLEusereq_refPRIMARYPRIMARY4viregfum_db.session_activity.user_id1 
  16. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('members_online_now', 'forum_statistics', 'wf_widget_threads_type_new')
    Params: 2
    Run Time: 0.000221
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 3Using where

Included Files (221, XenForo Classes: 70)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/CMF/Core/Autoloader.php
  9. library/CMF/Core/Listener.php
  10. library/XenForo/CodeEvent.php
  11. library/XenForo/FrontController.php
  12. library/XenForo/Dependencies/Public.php
  13. library/XenForo/Dependencies/Abstract.php
  14. library/Zend/Controller/Request/Http.php
  15. library/Zend/Controller/Request/Abstract.php
  16. library/Zend/Uri.php
  17. library/Zend/Controller/Response/Http.php
  18. library/Zend/Controller/Response/Abstract.php
  19. library/XenForo/Model/DataRegistry.php
  20. library/XenForo/Model.php
  21. library/Zend/Cache.php
  22. library/Zend/Cache/Backend/Memcached.php
  23. library/Zend/Cache/Backend/ExtendedInterface.php
  24. library/Zend/Cache/Backend/Interface.php
  25. library/Zend/Cache/Backend.php
  26. library/Zend/Cache/Core.php
  27. library/CMF/Core/Application.php
  28. library/RD/Tweak/Listener.php
  29. library/XenForo/Options.php
  30. library/XenForo/Link.php
  31. library/XenForo/Template/Helper/Core.php
  32. library/XenResource/Listener/Proxy.php
  33. library/NodesAsTabs/Listen.php
  34. library/WidgetFramework/Listener.php
  35. library/WidgetFramework/Option.php
  36. library/NFLJ/AMS/Listener/Proxy.php
  37. library/NFLJ/RMS/Listener/Proxy.php
  38. library/Audentio/UIX/Listener/CodeEvent.php
  39. library/Audentio/UIX/vendor/autoload.php
  40. library/Audentio/UIX/vendor/composer/autoload_real.php
  41. library/Audentio/UIX/vendor/composer/ClassLoader.php
  42. library/Audentio/UIX/vendor/composer/autoload_namespaces.php
  43. library/Audentio/UIX/vendor/composer/autoload_psr4.php
  44. library/Audentio/UIX/vendor/composer/autoload_classmap.php
  45. library/XenForo/Router.php
  46. library/XenForo/Route/Filter.php
  47. library/XenForo/Route/Interface.php
  48. library/XenForo/Route/ResponseSuffix.php
  49. library/XenForo/Route/Prefix.php
  50. library/WidgetFramework/Route/Filter/PageX.php
  51. library/XenForo/Route/Prefix/Threads.php
  52. library/XenForo/RouteMatch.php
  53. library/XenForo/ControllerPublic/Thread.php
  54. library/XenForo/ControllerPublic/Abstract.php
  55. library/XenForo/Controller.php
  56. library/DoublePost/Listener/LoadClassController.php
  57. library/XI/Tag/CodeEvent/Listener.php
  58. library/Dark/PostRating/EventListener.php
  59. library/StickyFirstPost/Listener.php
  60. library/DigitalPointAdPositioning/Listener/LoadClassControllerPublic/Thread.php
  61. library/RD/Tweak/ControllerPublic/Extend/Thread.php
  62. library/DoublePost/ControllerPublic/Thread.php
  63. library/XI/Tag/ControllerPublic/Thread.php
  64. library/NodesAsTabs/ControllerPublic/Thread.php
  65. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  66. library/StickyFirstPost/ControllerPublic/Thread.php
  67. library/DigitalPointAdPositioning/ControllerPublic/Thread.php
  68. library/NFLJ/AMS/XenForo/ControllerPublic/Thread.php
  69. library/NFLJ/RMS/XenForo/ControllerPublic/Thread.php
  70. library/XenForo/Input.php
  71. library/XenForo/Session.php
  72. library/Zend/Db.php
  73. library/Zend/Db/Adapter/Mysqli.php
  74. library/Zend/Db/Adapter/Abstract.php
  75. library/Zend/Db/Select.php
  76. library/Zend/Db/Expr.php
  77. library/Zend/Db/Profiler.php
  78. library/Zend/Db/Statement/Mysqli.php
  79. library/Zend/Db/Statement.php
  80. library/Zend/Db/Statement/Interface.php
  81. library/XenForo/Helper/Ip.php
  82. library/XenForo/Visitor.php
  83. library/XenForo/Model/User.php
  84. library/DoublePost/Listener/LoadClassModel.php
  85. library/XenForo/Model/Import.php
  86. library/RastaLulz/LoggedInCookie/Listener/LoadClass.php
  87. library/Audentio/UIX/Model/User.php
  88. library/Dark/PostRating/Model/User.php
  89. library/WidgetFramework/XenForo/Model/User.php
  90. library/XenResource/Listener/Proxy/ModelUser.php
  91. library/RastaLulz/LoggedInCookie/Model/User.php
  92. library/NFLJ/AMS/XenForo/Model/User.php
  93. library/NFLJ/RMS/XenForo/Model/User.php
  94. library/Zend/Db/Profiler/Query.php
  95. library/XenForo/Permission.php
  96. library/XenForo/Helper/Php.php
  97. library/XenForo/Phrase.php
  98. library/XenForo/Locale.php
  99. library/RastaLulz/LoggedInCookie/Listener/VisitorSetup.php
  100. library/XenForo/Helper/Cookie.php
  101. library/DigitalPointAdPositioning/Listener/ControllerPreDispatch.php
  102. library/NFLJ/AMS/Model/Article.php
  103. library/NFLJ/RMS/Model/Item.php
  104. library/XenForo/ControllerHelper/ForumThreadPost.php
  105. library/XenForo/ControllerHelper/Abstract.php
  106. library/XenForo/Model/Thread.php
  107. library/Audentio/UIX/Model/Thread.php
  108. library/CMF/Core/Model/Thread.php
  109. library/RD/Tweak/Model/Extend/Thread.php
  110. library/Dark/PostRating/Model/Thread.php
  111. library/WidgetFramework/XenForo/Model/Thread.php
  112. library/StickyFirstPost/Model/Thread.php
  113. library/NFLJ/AMS/XenForo/Model/Thread.php
  114. library/NFLJ/RMS/XenForo/Model/Thread.php
  115. library/Dark/PostRating/Model.php
  116. library/CMF/Core/Model/DataRegistry.php
  117. library/XenForo/Model/Forum.php
  118. library/CMF/Core/Model/Forum.php
  119. library/StickyFirstPost/Model/Forum.php
  120. library/XenForo/Model/Node.php
  121. library/Audentio/UIX/Model/Node.php
  122. library/CMF/Core/Model/Node.php
  123. library/XenForo/Helper/String.php
  124. library/XenForo/Helper/Discussion.php
  125. library/XenForo/Model/Post.php
  126. library/Audentio/UIX/Model/Post.php
  127. library/CMF/Core/Model/Post.php
  128. library/DoublePost/Model/Post.php
  129. library/Dark/PostRating/Model/Post.php
  130. library/StickyFirstPost/Model/Post.php
  131. library/NFLJ/RMS/XenForo/Model/Post.php
  132. library/XenForo/Model/Attachment.php
  133. library/XenForo/Route/Prefix/Attachments.php
  134. library/XenForo/Route/Prefix/Categories.php
  135. library/XenForo/Route/Prefix/Forums.php
  136. library/XenForo/ControllerResponse/View.php
  137. library/XenForo/ControllerResponse/Abstract.php
  138. library/NodesAsTabs/API.php
  139. library/NodesAsTabs/Model/Options.php
  140. library/DigitalPointAdPositioning/Listener/ControllerPostDispatch.php
  141. library/XenResource/Listener/Template.php
  142. library/NFLJ/AMS/Listener/Template.php
  143. library/NFLJ/RMS/Listener/Template.php
  144. library/XenForo/ViewRenderer/HtmlPublic.php
  145. library/XenForo/ViewRenderer/Abstract.php
  146. library/XenForo/Template/Public.php
  147. library/XenForo/Template/Abstract.php
  148. library/WidgetFramework/Core.php
  149. library/XenForo/Model/Moderator.php
  150. library/XenResource/Listener/Proxy/ModelModerator.php
  151. library/NFLJ/AMS/XenForo/Model/Moderator.php
  152. library/NFLJ/RMS/XenForo/Model/Moderator.php
  153. library/NFLJ/RMS/Listener/WidgetFramework.php
  154. library/NFLJ/AMS/Listener/WidgetFramework.php
  155. library/WidgetFramework/Model/Widget.php
  156. library/WidgetFramework/Helper/Sort.php
  157. library/WidgetFramework/WidgetRenderer.php
  158. library/XenForo/ViewPublic/Thread/View.php
  159. library/XenForo/ViewPublic/Base.php
  160. library/XenForo/View.php
  161. library/DigitalPointAdPositioning/Listener/LoadClassViewPublic/Thread.php
  162. library/WidgetFramework/XenForo/View1.php
  163. library/DigitalPointAdPositioning/ViewPublic/Thread/View.php
  164. library/NFLJ/AMS/XenForo/ViewPublic/Thread/View.php
  165. library/NFLJ/RMS/XenForo/ViewPublic/Thread/View.php
  166. library/XenForo/BbCode/Parser.php
  167. library/XenForo/BbCode/Formatter/Base.php
  168. library/DoublePost/Listener/LoadClassbbCode.php
  169. library/DoublePost/BbCode/Formatter/Base.php
  170. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  171. library/XenForo/ViewPublic/Helper/Message.php
  172. library/XenForo/BbCode/TextWrapper.php
  173. library/DoublePost/Listener/Hook.php
  174. library/WidgetFramework/WidgetRenderer/OnlineStaff.php
  175. library/WidgetFramework/WidgetRenderer/OnlineUsers.php
  176. library/WidgetFramework/WidgetRenderer/Stats.php
  177. library/WidgetFramework/WidgetRenderer/ShareThisPage.php
  178. library/WidgetFramework/WidgetRenderer/Threads.php
  179. library/WidgetFramework/Model/Cache.php
  180. library/Audentio/UIX/Model/NodeLayout.php
  181. library/XenForo/Route/Prefix/Members.php
  182. library/NodesAsTabs/NavTabs.php
  183. library/XenForo/Route/Prefix/LinkForums.php
  184. library/WidgetFramework/Template/Extended.php
  185. library/XenForo/Model/StyleProperty.php
  186. library/NFLJ/AMS/Listener/Criteria.php
  187. library/NFLJ/RMS/Listener/Criteria.php
  188. library/XenForo/Template/FileHandler.php
  189. library/XenForo/Helper/File.php
  190. internal_data/templates/S.12,L.2,thread_view.php
  191. internal_data/templates/S.12,L.2,page_nav.php
  192. library/XenForo/Route/Prefix/Posts.php
  193. library/XenForo/Model/Avatar.php
  194. internal_data/templates/S.12,L.2,dark_postrating_message_user_info.php
  195. library/XenForo/ViewPublic/Helper/User.php
  196. library/XenForo/Model/UserField.php
  197. internal_data/templates/S.12,L.2,bb_code_tag_attach.php
  198. internal_data/templates/S.12,L.2,dark_postrating.php
  199. library/DigitalPointAdPositioning/Callback/AdBelowPost.php
  200. internal_data/templates/S.12,L.2,doublepost_bb_code_tag.php
  201. internal_data/templates/S.12,L.2,bb_code_tag_quote.php
  202. library/XenForo/Model/Session.php
  203. library/Dark/PostRating/Model/Session.php
  204. internal_data/templates/S.12,L.2,wf_widget_online_staff.php
  205. library/Zend/Exception.php
  206. internal_data/templates/S.12,L.2,wf_widget_online_users.php
  207. library/WidgetFramework/Helper/String.php
  208. internal_data/templates/S.12,L.2,wf_widget_stats.php
  209. internal_data/templates/S.12,L.2,wf_widget_share_page.php
  210. library/WidgetFramework/WidgetRenderer/Empty.php
  211. internal_data/templates/S.12,L.2,wf_widget_wrapper.php
  212. library/XenForo/Debug.php
  213. internal_data/templates/S.12,L.2,PAGE_CONTAINER.php
  214. library/Audentio/UIX/Template/Helper/CanvasNavigation.php
  215. internal_data/templates/S.12,L.2,resources_tab_links.php
  216. internal_data/templates/S.12,L.2,nflj_ams_tab_links.php
  217. internal_data/templates/S.12,L.2,nflj_rms_tab_links.php
  218. internal_data/templates/S.12,L.2,navigation.php
  219. library/XenForo/ViewRenderer/Json.php
  220. internal_data/templates/S.12,L.2,SFP_js_first_post.php
  221. internal_data/templates/S.12,L.2,nat_bodyjs.php