Page Time: 0.0663s

Memory: 7.5288 MB (Peak: 8.4537 MB)

Queries (20, time: 0.0117s, 17.7%)

  1. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('options', 'languages', 'contentTypes', 'codeEventListeners', 'deferredRun', 'simpleCache', 'addOns', 'defaultStyleProperties', 'routeFiltersIn', 'routeFiltersOut', 'routesPublic', 'nodeTypes', 'bannedIps', 'discouragedIps', 'styles', 'displayStyles', 'userBanners', 'smilies', 'bbCode', 'threadPrefixes', 'userTitleLadder', 'reportCounts', 'moderationCounts', 'userModerationCounts', 'notices', 'userFieldsInfo')
    Run Time: 0.000542
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000239
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  3. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		0 AS following_0,
        					0 AS friends_0, '' AS mutual_friends_0
    FROM xf_user AS user
    
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = user.user_id)
    		LEFT JOIN xf_user_option AS user_option ON
    			(user_option.user_id = user.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = user.user_id)
    WHERE user.user_id = ?
    Params: 21
    Run Time: 0.001006
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
  4. SELECT search_index.content_type, search_index.content_id
    FROM xf_search_index AS search_index
    WHERE search_index.user_id = ?
    	
    ORDER BY search_index.item_date DESC
     LIMIT 15
    Params: 21
    Run Time: 0.000470
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsearch_indexrefuser_id_item_dateuser_id_item_date4const3572Using where
  5. SELECT profile_post.*
    	,
    		posting_user.*,
    		IF(posting_user.username IS NULL, profile_post.username, posting_user.username) AS username,
    		receiving_user.username
    			AS profile_username,
    		receiving_user.gender
    			AS profile_gender,
    		receiving_user.user_state
    			AS profile_user_state,
    		receiving_user.user_group_id
    			AS profile_user_group_id,
    		receiving_user.secondary_group_ids
    			AS profile_secondary_group_ids,
    		receiving_user.display_style_group_id
    			AS profile_display_style_group_id,
    		receiving_user.is_banned
    			AS profile_is_banned,
    		receiving_user.is_admin
    			AS profile_is_admin,
    		receiving_user.is_moderator
    			AS profile_is_moderator,
    		receiving_user.avatar_date
    			AS profile_avatar_date,
    		receiving_user.gravatar
    			AS profile_gravatar,
    		receiving_user.warning_points
    			AS profile_warning_points,
    		receiving_user.permission_combination_id
    			AS profile_permission_combination_id,
    		receiving_user_privacy.allow_view_profile
    			AS profile_allow_view_profile,
    		receiving_user_privacy.allow_post_profile
    			AS profile_allow_post_profile,
    		receiving_user_privacy.allow_send_personal_conversation
    			AS profile_allow_send_personal_conversation,
    		receiving_user_privacy.allow_view_identities
    			AS profile_allow_view_identities,
    		receiving_user_privacy.allow_receive_news_feed
    			AS profile_allow_allow_receive_news_feed,
    		IF (receiving_user_follow.follow_user_id, 1, 0)
    			AS following_0
    FROM xf_profile_post AS profile_post
    
    		LEFT JOIN xf_user AS posting_user ON
    			(posting_user.user_id = profile_post.user_id)
    		LEFT JOIN xf_user AS receiving_user ON
    			(receiving_user.user_id = profile_post.profile_user_id)
    		LEFT JOIN xf_user_privacy AS receiving_user_privacy ON
    			(receiving_user_privacy.user_id = profile_post.profile_user_id)
    		LEFT JOIN xf_user_follow AS receiving_user_follow ON
    			(receiving_user_follow.user_id = profile_post.profile_user_id AND follow_user_id = 0)
    WHERE profile_post.profile_post_id IN(463, 462)
    Run Time: 0.001372
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEprofile_postrangePRIMARYPRIMARY4 2Using where
    SIMPLEposting_usereq_refPRIMARYPRIMARY4mersedesclub_xf.profile_post.user_id1 
    SIMPLEreceiving_usereq_refPRIMARYPRIMARY4mersedesclub_xf.profile_post.profile_user_id1 
    SIMPLEreceiving_user_privacyeq_refPRIMARYPRIMARY4mersedesclub_xf.profile_post.profile_user_id1 
    SIMPLEreceiving_user_followeq_refPRIMARY,follow_user_idPRIMARY8mersedesclub_xf.profile_post.profile_user_id,const1Using index
  6. SELECT
    	post.*
    	,
    		thread.*, thread.user_id AS thread_user_id, thread.username AS thread_username,
    		thread.post_date AS thread_post_date,
    		post.user_id, post.username, post.post_date,
    		node.title AS node_title, node.node_name,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    	permission.cache_value AS node_permission_cache
    FROM xf_post AS post
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		INNER JOIN xf_node AS node ON
    			(node.node_id = thread.node_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = thread.node_id)
    WHERE post.post_id IN (142121, 141909, 141906, 141905, 141903, 141901, 141899, 141894, 141877, 141869, 141716)
    Run Time: 0.001642
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangePRIMARY,thread_id_post_date,thread_id_positionPRIMARY4 11Using where
    SIMPLEthreadeq_refPRIMARY,node_id_last_post_date,node_id_sticky_state_last_postPRIMARY4mersedesclub_xf.post.thread_id1 
    SIMPLEnodeeq_refPRIMARYPRIMARY4mersedesclub_xf.thread.node_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4mersedesclub_xf.post.user_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,mersedesclub_xf.node.node_id1 
  7. SELECT thread.*
    	,
    		user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
    		node.title AS node_title, node.node_name,
    		post.message, post.attach_count,
    		NULL AS thread_read_date,
    		0 AS user_post_count,
    	permission.cache_value AS node_permission_cache
    FROM xf_thread AS thread
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    		LEFT JOIN xf_node AS node ON
    			(node.node_id = thread.node_id)
    		LEFT JOIN xf_post AS post ON
    			(post.post_id = thread.first_post_id)
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = thread.node_id)
    WHERE thread.thread_id IN (8286, 8275)
    Run Time: 0.001029
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangePRIMARYPRIMARY4 2Using where
    SIMPLEusereq_refPRIMARYPRIMARY4mersedesclub_xf.thread.user_id1 
    SIMPLEnodeeq_refPRIMARYPRIMARY4mersedesclub_xf.thread.node_id1 
    SIMPLEposteq_refPRIMARYPRIMARY4mersedesclub_xf.thread.first_post_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,mersedesclub_xf.thread.node_id1 
  8. 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 (141715, 141869)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000869
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 10Using where; Using temporary
    SIMPLEdataeq_refPRIMARYPRIMARY4mersedesclub_xf.attachment.data_id1Using where
  9. SELECT
    	post.*
    	
    FROM xf_post AS post
    WHERE post.post_id IN (141715, 141869)
    Run Time: 0.000564
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangePRIMARYPRIMARY4 2Using where
  10. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id = ?
    Params: 57
    Run Time: 0.000718
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
  11. 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 (141715)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000619
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const8Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4mersedesclub_xf.attachment.data_id1Using where
  12. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id = ?
    Params: 44
    Run Time: 0.000484
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
  13. 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 (141869)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000349
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const2Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4mersedesclub_xf.attachment.data_id1Using where
  14. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 6f3f4587670f540cf9c068d6a141e191, a:6:{s:12:"sessionStart";i:1713497856;s:2:"ip";b:0;s:11:"sessionCsrf";s:16:"3FHBW3rLG0QjJrUY";s:9:"userAgent";s:103:"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)";s:7:"robotId";s:0:"";s:16:"previousActivity";i:0;}, 1713501456
    Run Time: 0.000291
  15. 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_Member, RecentContent, valid, user_id=21, 1713497856,
    Run Time: 0.000258
  16. SELECT node.*
    	
    FROM xf_node AS node
    
    WHERE node.node_id = ?
    Params: 17
    Run Time: 0.000338
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
  17. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'search_result_profile_post', 'search_result_post', 'search_result_thread', 'member_recent_content', 'wf_home_navtab_links', 'mkdgCatalog_Links', 'Counters', 'wf_hook_moderator_bar', 'wf_revealer', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000259
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 11Using where
  18. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('catalog')
    Params: 2
    Run Time: 0.000183
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  19. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('mkdgCatalog_TopLinks')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000265
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  20. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('MKDG_navigation_visitor_tab_top')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000221
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (176, XenForo Classes: 71)

  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/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Db.php
  19. library/Zend/Db/Adapter/Mysqli.php
  20. library/Zend/Db/Adapter/Abstract.php
  21. library/Zend/Db/Select.php
  22. library/Zend/Db/Expr.php
  23. library/Zend/Db/Profiler.php
  24. library/Zend/Db/Statement/Mysqli.php
  25. library/Zend/Db/Statement.php
  26. library/Zend/Db/Statement/Interface.php
  27. library/Zend/Db/Profiler/Query.php
  28. library/XenForo/CodeEvent.php
  29. library/XenForo/Options.php
  30. library/XenForo/Link.php
  31. library/XenForo/Template/Helper/Core.php
  32. library/WidgetFramework/Listener.php
  33. library/WidgetFramework/Option.php
  34. library/WidgetFramework/Helper/Index.php
  35. library/Waindigo/Listener/InitDependencies.php
  36. library/Waindigo/Listener/InitDependencies/20150212.php
  37. library/Waindigo/Listener/ControllerPreDispatch/20150212.php
  38. library/Hex/Listener/InitDependencies.php
  39. library/Hex/Listener/InitDependencies/20150212.php
  40. library/Hex/Listener/ControllerPreDispatch/20150911.php
  41. library/HtmlCustomTitles/Listener.php
  42. library/sonnb/XenGallery/Listener.php
  43. library/XenForo/Router.php
  44. library/XenForo/Route/Filter.php
  45. library/XenForo/Route/Interface.php
  46. library/XenForo/Route/ResponseSuffix.php
  47. library/XenForo/Route/Prefix.php
  48. library/WidgetFramework/Route/Filter/PageX.php
  49. library/XenForo/Route/Prefix/Members.php
  50. library/XenForo/RouteMatch.php
  51. library/XenForo/ControllerPublic/Member.php
  52. library/XenForo/ControllerPublic/Abstract.php
  53. library/XenForo/Controller.php
  54. library/Waindigo/Friends/Listener/LoadClass.php
  55. library/Waindigo/Listener/LoadClass.php
  56. library/Waindigo/Listener/LoadClass/20150106.php
  57. library/Waindigo/Friends/Extend/XenForo/ControllerPublic/Member.php
  58. library/sonnb/XenGallery/XenForo/ControllerPublic/Member.php
  59. library/XenForo/Input.php
  60. library/XenForo/Session.php
  61. library/XenForo/Helper/Ip.php
  62. library/XenForo/Visitor.php
  63. library/XenForo/Model/User.php
  64. library/Waindigo/Friends/Extend/XenForo/Model/User.php
  65. library/WidgetFramework/XenForo/Model/User.php
  66. library/sonnb/XenGallery/XenForo/Model/User.php
  67. library/XenForo/Permission.php
  68. library/XenForo/Helper/Php.php
  69. library/XenForo/Phrase.php
  70. library/XenForo/Locale.php
  71. library/XenForo/ControllerHelper/UserProfile.php
  72. library/XenForo/ControllerHelper/Abstract.php
  73. library/XenForo/Model/UserProfile.php
  74. library/XenForo/Search/SourceHandler/Abstract.php
  75. library/XenForo/Search/SourceHandler/MySqlFt.php
  76. library/XenForo/Model/Search.php
  77. library/Waindigo/CustomFields/Listener/LoadClass.php
  78. library/Waindigo/CustomFields/Extend/XenForo/Model/Search.php
  79. library/XenForo/Search/DataHandler/ProfilePost.php
  80. library/XenForo/Search/DataHandler/Abstract.php
  81. library/XenForo/Search/DataHandler/Post.php
  82. library/Waindigo/CustomFields/Extend/XenForo/Search/DataHandler/Post.php
  83. library/XenForo/Search/DataHandler/Thread.php
  84. library/Hex/Thumbnails/Listener/LoadClass.php
  85. library/Hex/Listener/LoadClass.php
  86. library/Hex/Listener/LoadClass/20150518.php
  87. library/Hex/Thumbnails/Extend/XenForo/Search/DataHandler/Thread.php
  88. library/XenForo/Model/ProfilePost.php
  89. library/WidgetFramework/XenForo/Model/ProfilePost.php
  90. library/sonnb/XenGallery/XenForo/Model/ProfilePost.php
  91. library/XenForo/Model/Post.php
  92. library/XenForo/Model/Thread.php
  93. library/MKDGCustomFieldSearch/Listener/LoadClass.php
  94. library/Waindigo/CustomFields/Extend/XenForo/Model/Thread.php
  95. library/MKDGCustomFieldSearch/Model/Thread.php
  96. library/WidgetFramework/XenForo/Model/Thread.php
  97. library/XenForo/Model/Forum.php
  98. library/XenForo/Helper/String.php
  99. library/Hex/Thumbnails/Model/Thumbnails.php
  100. library/XenForo/Model/Attachment.php
  101. library/Hex/Thumbnails/Extend/XenForo/Model/Attachment.php
  102. library/XenForo/DataWriter.php
  103. library/XenForo/DataWriter/Forum.php
  104. library/XenForo/DataWriter/Node.php
  105. library/XenForo/DataWriter/DiscussionContainerInterface.php
  106. library/Waindigo/CustomFields/Extend/XenForo/DataWriter/Forum.php
  107. library/Hex/Thumbnails/Extend/XenForo/DataWriter/Forum.php
  108. library/XenForo/ControllerResponse/View.php
  109. library/XenForo/ControllerResponse/Abstract.php
  110. library/XenForo/Helper/Cookie.php
  111. library/XenForo/ViewRenderer/HtmlPublic.php
  112. library/XenForo/ViewRenderer/Abstract.php
  113. library/XenForo/Template/Public.php
  114. library/XenForo/Template/Abstract.php
  115. library/WidgetFramework/Core.php
  116. library/XenForo/Model/Moderator.php
  117. library/sonnb/XenGallery/XenForo/Model/Moderator.php
  118. library/WidgetFramework/Model/Widget.php
  119. library/WidgetFramework/Helper/Sort.php
  120. library/WidgetFramework/WidgetRenderer.php
  121. library/XenForo/ViewPublic/Member/RecentContent.php
  122. library/XenForo/ViewPublic/Base.php
  123. library/XenForo/View.php
  124. library/WidgetFramework/XenForo/View1.php
  125. library/XenForo/ViewPublic/Helper/Search.php
  126. library/Waindigo/CustomFields/Listener/TemplateCreate.php
  127. library/Waindigo/Listener/TemplateCreate.php
  128. library/Waindigo/Listener/TemplateCreate/20130522.php
  129. library/Hex/Thumbnails/Listener/TemplateCreate.php
  130. library/Hex/Listener/TemplateCreate.php
  131. library/Hex/Listener/TemplateCreate/20150106.php
  132. library/MKDGCustomFieldSearch/Tabs/MainTab.php
  133. library/XenForo/Model/Node.php
  134. library/Hex/Thumbnails/Extend/XenForo/Model/Node.php
  135. library/XenForo/Route/Prefix/Forums.php
  136. library/mkdgXenforoConversations/Tabs/MainTab.php
  137. library/mkdgPages/Tabs/MainTab.php
  138. library/mkdgCatalog/Tabs/MainTab.php
  139. library/WidgetFramework/WidgetRenderer/HtmlWithoutWrapper.php
  140. library/WidgetFramework/WidgetRenderer/Html.php
  141. library/WidgetFramework/WidgetRenderer/TemplateWithoutWrapper.php
  142. library/WidgetFramework/WidgetRenderer/Template.php
  143. library/WidgetFramework/Template/Extended.php
  144. library/XenForo/Model/Avatar.php
  145. library/XenForo/Route/Prefix/ProfilePosts.php
  146. library/Waindigo/CustomFields/Listener/TemplatePostRender.php
  147. library/Waindigo/Listener/TemplatePostRender.php
  148. library/Waindigo/Listener/TemplatePostRender/20150106.php
  149. library/Waindigo/Listener/Template.php
  150. library/Waindigo/Listener/Template/20150106.php
  151. library/Hex/Thumbnails/Listener/TemplatePostRender.php
  152. library/Hex/Listener/TemplatePostRender.php
  153. library/Hex/Listener/TemplatePostRender/20150106.php
  154. library/Hex/Listener/Template.php
  155. library/Hex/Listener/Template/20150106.php
  156. library/Waindigo/Friends/Listener/TemplatePostRender.php
  157. library/XenForo/Route/Prefix/Posts.php
  158. library/XenForo/Route/Prefix/Threads.php
  159. library/mkdgPages/Listener/HelpTabs.php
  160. library/mkdgStyleEdit/Listener/TemplateHook.php
  161. library/Waindigo/CustomFields/Listener/TemplateHook.php
  162. library/Waindigo/Listener/TemplateHook.php
  163. library/Waindigo/Listener/TemplateHook/20150106.php
  164. library/Hex/Thumbnails/Listener/TemplateHook.php
  165. library/Hex/Listener/TemplateHook.php
  166. library/Hex/Listener/TemplateHook/20150106.php
  167. library/MKDGCustomFieldSearch/Listener/ThreadCreateHook.php
  168. library/MKDGCustomFieldSearch/Listener/MkdgHook.php
  169. library/XenForo/ControllerPublic/Post.php
  170. library/mkdgXenforoConversations/Listener/Template.php
  171. library/Waindigo/Friends/Listener/TemplateHook.php
  172. library/WidgetFramework/WidgetRenderer/Empty.php
  173. library/XenForo/Debug.php
  174. library/WidgetFramework/Helper/String.php
  175. library/mkdgCatalog/Listener/Template.php
  176. library/XenForo/ViewRenderer/Json.php