Page Time: 0.3771s

Memory: 16.9198 MB (Peak: 27.2054 MB)

Queries (32, time: 0.0187s, 5.0%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000390
    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: 199348
    Run Time: 0.000873
    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: 5
    Run Time: 0.000718
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    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
    FROM xf_post AS post
    
    		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))
    WHERE post.thread_id = ?
    	 AND (post.position >= 0 AND post.position < 20) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 199348
    Run Time: 0.002383
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrefthread_id_post_date,thread_id_position,thread_id_msg_statethread_id_post_date4const5Using index condition; Using where; Using filesort
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,audiclub_xf.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4audiclub_xf.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4audiclub_xf.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4audiclub_xf.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,audiclub_xf.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22audiclub_xf.post.user_id,func1Using where
  5. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 199348
    Run Time: 0.000407
  6.             SELECT field.*
                ,
                        ff.field_id, ff.node_id
                FROM xf_thread_field AS field
                
                        INNER JOIN xf_forum_field AS ff ON
                        (ff.field_id = field.field_id)
                WHERE (ff.node_id IN(5))
                ORDER BY field.materialized_order
    Run Time: 0.000521
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEffrefPRIMARY,field_idPRIMARY4const1Using index; Using temporary; Using filesort
    SIMPLEfieldeq_refPRIMARYPRIMARY194audiclub_xf.ff.field_id1 
  7.             SELECT field.*
                ,
                        ff.field_id, ff.node_id
                FROM xf_thread_field AS field
                
                        INNER JOIN xf_forum_field AS ff ON
                        (ff.field_id = field.field_id)
                WHERE (ff.node_id IN(5))
                ORDER BY field.materialized_order
    Run Time: 0.000527
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEffrefPRIMARY,field_idPRIMARY4const1Using index; Using temporary; Using filesort
    SIMPLEfieldeq_refPRIMARYPRIMARY194audiclub_xf.ff.field_id1 
  8. SELECT xf_thread.thread_id, 
    xf_thread.node_id,
    xf_thread.title, 
    xf_thread.reply_count,
    xf_thread.view_count, 
    xf_thread.username, 
    xf_thread.post_date,
    xf_thread.last_post_date, 
    xf_thread.last_post_user_id, 
    xf_thread.last_post_username, 
    xf_thread.prefix_id, 	 
    xf_node.title AS nodeTitle, 
    xf_user.user_id, 
    xf_user.gender, 
    xf_user.avatar_date		
    FROM xf_thread
    INNER JOIN xf_node ON xf_node.node_id = xf_thread.node_id
    INNER JOIN xf_user ON xf_user.user_id = xf_thread.user_id
    WHERE (xf_thread.thread_id = 0)
    AND xf_thread.discussion_state = 'visible'
    ORDER BY xf_thread.post_date DESC
    LIMIT ?
    Params: 2
    Run Time: 0.000494
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLE       no matching row in const table
  9. DELETE FROM `xf_dbtech_security_session` WHERE (last_activity_date < 1711325271)
    Run Time: 0.000397
  10. 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=199348, 1713917271,
    Run Time: 0.000443
  11. SELECT *
    FROM uix_node_layout
    Run Time: 0.000399
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuix_node_layoutALL    2 
  12. SELECT node.*
    	
    FROM xf_node AS node
    
    WHERE node.node_id = ?
    Params: 67
    Run Time: 0.000453
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
  13. SELECT thread.*
    	
    FROM xf_thread AS thread
    
    WHERE thread.thread_id = ?
    Params: 199348
    Run Time: 0.000804
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
  14. SELECT agree FROM adv_offers WHERE userid = ? LIMIT 1
    Params: 0
    Run Time: 0.000286
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLE       no matching row in const table
  15. 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.000732
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeALL    253 
    SIMPLEnode_fieldeq_refPRIMARYPRIMARY4audiclub_xf.node.node_id1 
  16. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'bb_code_tag_code', 'bb_code_tag_php', 'bb_code_tag_html', 'bb_code_tag_quote', 'bb_code_tag_attach', 'bb_code_tag_spoiler', 'sonnb_xengallery_bbcode_photo', 'sonnb_xengallery_bbcode_video', 'sonnb_xengallery_bbcode_album', 'sticky_sidebar.js', 'wf_widget_wrapper', 'wf_widget_threads', 'tieserAdfox_new', 'andy_forummoderators_link1', 'Banner_300x600', 'mkdg_share_page', '_header_node.5', '_footer_node.5', '_header_post_node.5', '_footer_post_node.5', 'waindigo_quick_reply_prepend_customfields', 'waindigo_header_node_customfields', 'thread_view', 'wf_home_navtab_links', 'sonnb_xengallery_option_copyright', 'sonnbXG_copyright', 'sonnb_xengallery_navbar_template', 'MKDGCustomFieldSearchTabs', 'main_page_footer', 'Counters', 'XenAdvShopShowStrings', 'wf_hook_moderator_bar', 'wf_revealer', 'sonnb_xengallery_nav_visitor', 'dbtech_security_navigation_visitor_tab_links2', 'dbtech_security_fingerprint', 'dbtech_security_trophy_edit', 'dbtech_security_account_wrapper_sidebar_settings', 'dbtech_security_navbar_right', 'banlist_position', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 3
    Run Time: 0.003650
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 42Using where
  17. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('mkdg_partners')
    Params: 3
    Run Time: 0.000264
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  18. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('waindigo_thread_view_tools_links_customfields')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 3
    Run Time: 0.000292
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  19. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('siropu_easy_user_ban_post_link')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 3
    Run Time: 0.000287
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  20. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 675
    Run Time: 0.000301
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  21. SELECT thread.*
    	
    FROM xf_thread AS thread
    
    WHERE thread.thread_id = ?
    Params: 199348
    Run Time: 0.000479
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
  22. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 175
    Run Time: 0.000345
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  23. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 674
    Run Time: 0.000237
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  24. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 175
    Run Time: 0.000339
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  25. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_container_js_head_NY')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 3
    Run Time: 0.000429
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  26. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('sonnbXG_copyright', 'navigation')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 3
    Run Time: 0.000543
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 2Using where
  27.  SELECT * FROM adv_base WHERE advtype IN (1,4) 
    AND status IN (2, 5) AND forumid = ?
    Params: 5
    Run Time: 0.000427
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEadv_baserangeIDX_advertbase_advtype,IDX_advertbase_forumid,IDX_advertbase_statusIDX_advertbase_status5 17Using index condition; Using where
  28. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('XenAdvShop_ShowStrings')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 3
    Run Time: 0.000288
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  29. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('PAGE_CONTAINER_NY2')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 3
    Run Time: 0.000292
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  30. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('footer_NY')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 3
    Run Time: 0.000227
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  31. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('MKDG_navigation_visitor_tab_top')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 3
    Run Time: 0.000193
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  32. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('PAGE_CONTAINER_NY')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 3
    Run Time: 0.000265
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (259, XenForo Classes: 69)

  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/Cache.php
  19. library/Zend/Cache/Backend/Libmemcached.php
  20. library/Zend/Cache/Backend/ExtendedInterface.php
  21. library/Zend/Cache/Backend/Interface.php
  22. library/Zend/Cache/Backend.php
  23. library/Zend/Cache/Core.php
  24. library/XenForo/CodeEvent.php
  25. library/XenForo/Options.php
  26. library/XenForo/Link.php
  27. library/XenForo/Template/Helper/Core.php
  28. library/WidgetFramework/Listener.php
  29. library/WidgetFramework/Option.php
  30. library/WidgetFramework/Helper/Index.php
  31. library/Waindigo/Listener/InitDependencies.php
  32. library/Waindigo/Listener/InitDependencies/20150212.php
  33. library/DBTech/Security/XenForo/EventListener/LoadClass.php
  34. library/DBTech/Security/Application/File.php
  35. library/XenForo/Helper/File.php
  36. library/MKDGBBcodeUrlParser/Listener/LoadClass.php
  37. library/Audentio/UIX/Listener/CodeEvent.php
  38. library/Waindigo/Listener/ControllerPreDispatch/20150212.php
  39. library/Siropu/EasyUserBan/Listener.php
  40. library/DBTech/Security/XenForo/EventListener/InitDependencies.php
  41. library/DBTech/Security/XenForo/Autoloader.php
  42. library/Hex/Listener/InitDependencies.php
  43. library/Hex/Listener/InitDependencies/20150212.php
  44. library/Hex/Listener/ControllerPreDispatch/20150911.php
  45. library/HtmlCustomTitles/Listener.php
  46. library/sonnb/XenGallery/Listener.php
  47. library/Audentio/UIX/vendor/autoload.php
  48. library/Audentio/UIX/vendor/composer/autoload_real.php
  49. library/Audentio/UIX/vendor/composer/ClassLoader.php
  50. library/Audentio/UIX/vendor/composer/autoload_namespaces.php
  51. library/Audentio/UIX/vendor/composer/autoload_psr4.php
  52. library/Audentio/UIX/vendor/composer/autoload_classmap.php
  53. library/XenForo/Router.php
  54. library/XenForo/Route/Filter.php
  55. library/XenForo/Route/Interface.php
  56. library/XenForo/Route/ResponseSuffix.php
  57. library/XenForo/Route/Prefix.php
  58. library/WidgetFramework/Route/Filter/PageX.php
  59. library/XenForo/Route/Prefix/Threads.php
  60. library/XenForo/RouteMatch.php
  61. library/XenForo/ControllerPublic/Thread.php
  62. library/XenForo/ControllerPublic/Abstract.php
  63. library/XenForo/Controller.php
  64. library/Waindigo/CustomFields/Listener/LoadClass.php
  65. library/Waindigo/Listener/LoadClass.php
  66. library/Waindigo/Listener/LoadClass/20150106.php
  67. library/Hex/Thumbnails/Listener/LoadClass.php
  68. library/Hex/Listener/LoadClass.php
  69. library/Hex/Listener/LoadClass/20150518.php
  70. library/ExternalExtended/Listener.php
  71. library/InfisJSC/TopicStarter/Listener.php
  72. library/Andy/SimilarThreadsPlus/Listener.php
  73. library/ChangeThreadStarter/Listener.php
  74. library/SV/ReportImprovements/Listener.php
  75. library/Waindigo/CustomFields/Extend/XenForo/ControllerPublic/Thread.php
  76. library/Hex/Thumbnails/Extend/XenForo/ControllerPublic/Thread.php
  77. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  78. library/InfisJSC/TopicStarter/ControllerPublic/Thread.php
  79. library/sonnb/XenGallery/XenForo/ControllerPublic/Thread.php
  80. library/Andy/SimilarThreadsPlus/ControllerPublic/Thread.php
  81. library/ChangeThreadStarter/ControllerPublic/Thread.php
  82. library/SV/ReportImprovements/XenForo/ControllerPublic/Thread.php
  83. library/XenForo/Input.php
  84. library/XenForo/Session.php
  85. library/DBTech/Security/XenForo/Session.php
  86. library/Zend/Db.php
  87. library/Zend/Db/Adapter/Mysqli.php
  88. library/Zend/Db/Adapter/Abstract.php
  89. library/Zend/Db/Select.php
  90. library/Zend/Db/Expr.php
  91. library/Zend/Db/Profiler.php
  92. library/Zend/Db/Statement/Mysqli.php
  93. library/Zend/Db/Statement.php
  94. library/Zend/Db/Statement/Interface.php
  95. src/addons/DBTech/Security/3rdParty/spiders.php
  96. library/XenForo/Helper/Ip.php
  97. library/XenForo/Visitor.php
  98. library/XenForo/Model/User.php
  99. library/Waindigo/Friends/Listener/LoadClass.php
  100. library/Nobita/Banlist/Listener.php
  101. library/Audentio/UIX/Model/User.php
  102. library/DBTech/Security/XenForo/Model/User.php
  103. library/Waindigo/Friends/Extend/XenForo/Model/User.php
  104. library/WidgetFramework/XenForo/Model/User.php
  105. library/sonnb/XenGallery/XenForo/Model/User.php
  106. library/SV/ReportImprovements/XenForo/Model/User.php
  107. library/DBTech/Security/XenForo/Visitor.php
  108. library/Zend/Db/Profiler/Query.php
  109. library/XenForo/Permission.php
  110. library/XenForo/Helper/Php.php
  111. library/XenForo/Phrase.php
  112. library/XenForo/Locale.php
  113. library/DBTech/Security/XenForo/EventListener/ControllerDispatch.php
  114. library/SV/ReportImprovements/Globals.php
  115. library/XenForo/Model/Report.php
  116. library/SV/ReportImprovements/Listener2.php
  117. library/SV/ReportImprovements/XenForo/Model/ReportPatch2.php
  118. library/SV/ReportImprovements/XenForo/Model/Report.php
  119. library/XenForo/ControllerHelper/ForumThreadPost.php
  120. library/XenForo/ControllerHelper/Abstract.php
  121. library/XenForo/Model/Thread.php
  122. library/Waindigo/WatchedFolders/Listener/LoadClass.php
  123. library/MKDGCustomFieldSearch/Listener/LoadClass.php
  124. library/Audentio/UIX/Model/Thread.php
  125. library/Waindigo/WatchedFolders/Extend/XenForo/Model/Thread.php
  126. library/Waindigo/CustomFields/Extend/XenForo/Model/Thread.php
  127. library/MKDGCustomFieldSearch/Model/Thread.php
  128. library/WidgetFramework/XenForo/Model/Thread.php
  129. library/InfisJSC/TopicStarter/Model/Thread.php
  130. library/SV/ReportImprovements/XenForo/Model/Thread.php
  131. library/XenForo/Model/Forum.php
  132. library/SV/ReportImprovements/XenForo/Model/Forum.php
  133. library/XenForo/Helper/String.php
  134. library/XenForo/Model/Post.php
  135. library/Audentio/UIX/Model/Post.php
  136. library/InfisJSC/TopicStarter/Model/Post.php
  137. library/SV/ReportImprovements/XenForo/Model/Post.php
  138. library/XenForo/Model/Attachment.php
  139. library/Hex/Thumbnails/Extend/XenForo/Model/Attachment.php
  140. library/XenForo/Model/Node.php
  141. library/Audentio/UIX/Model/Node.php
  142. library/Hex/Thumbnails/Extend/XenForo/Model/Node.php
  143. library/XenForo/Route/Prefix/Categories.php
  144. library/XenForo/Route/Prefix/Forums.php
  145. library/XenForo/ControllerResponse/View.php
  146. library/XenForo/ControllerResponse/Abstract.php
  147. library/Waindigo/CustomFields/Model/ThreadField.php
  148. library/Hex/Thumbnails/Model/Thumbnails.php
  149. library/XenES/Api.php
  150. library/XenForo/Helper/Http.php
  151. library/Zend/Http/Client.php
  152. library/Zend/Loader.php
  153. library/Zend/Http/Client/Adapter/Interface.php
  154. library/Zend/Http/Response.php
  155. library/Zend/Http/Response/Stream.php
  156. library/Zend/Uri/Http.php
  157. library/Zend/Validate/Hostname.php
  158. library/Zend/Validate/Abstract.php
  159. library/Zend/Validate/Interface.php
  160. library/Zend/Validate/Ip.php
  161. library/Andy/SimilarThreadsPlus/Model.php
  162. library/DBTech/Security/XenForo/Model/Security.php
  163. library/XenForo/Helper/Cookie.php
  164. library/XenForo/ViewRenderer/HtmlPublic.php
  165. library/XenForo/ViewRenderer/Abstract.php
  166. library/XenForo/Template/Public.php
  167. library/XenForo/Template/Abstract.php
  168. library/WidgetFramework/Core.php
  169. library/XenForo/Model/Moderator.php
  170. library/sonnb/XenGallery/XenForo/Model/Moderator.php
  171. library/SV/ReportImprovements/XenForo/Model/Moderator.php
  172. library/WidgetFramework/Model/Widget.php
  173. library/WidgetFramework/Helper/Sort.php
  174. library/WidgetFramework/WidgetRenderer.php
  175. library/XenForo/ViewPublic/Thread/View.php
  176. library/XenForo/ViewPublic/Base.php
  177. library/XenForo/View.php
  178. library/Waindigo/CustomFields/Extend/XenForo/ViewPublic/Thread/View.php
  179. library/WidgetFramework/XenForo/View1.php
  180. library/XenForo/BbCode/Parser.php
  181. library/XenForo/BbCode/Formatter/Base.php
  182. library/MKDGBBcodeUrlParser/Extend/XenForo/BbCode/Formatter/Base.php
  183. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  184. library/sonnb/XenGallery/XenForo/BbCode/Formatter/Base.php
  185. library/XenForo/ViewPublic/Helper/Message.php
  186. library/XenForo/BbCode/TextWrapper.php
  187. library/WidgetFramework/WidgetRenderer/Empty.php
  188. library/WidgetFramework/WidgetRenderer/TemplateWithoutWrapper.php
  189. library/WidgetFramework/WidgetRenderer/Template.php
  190. library/WidgetFramework/WidgetRenderer/Threads.php
  191. library/Hex/Thumbnails/Extend/WidgetFramework/WidgetRenderer/Threads.php
  192. library/WidgetFramework/Model/Cache.php
  193. library/WidgetFramework/WidgetRenderer/HtmlWithoutWrapper.php
  194. library/WidgetFramework/WidgetRenderer/Html.php
  195. library/Waindigo/CustomFields/Listener/TemplateCreate.php
  196. library/Waindigo/Listener/TemplateCreate.php
  197. library/Waindigo/Listener/TemplateCreate/20130522.php
  198. library/Hex/Thumbnails/Listener/TemplateCreate.php
  199. library/Hex/Listener/TemplateCreate.php
  200. library/Hex/Listener/TemplateCreate/20150106.php
  201. library/Audentio/UIX/Model/NodeLayout.php
  202. library/Sedo/GoToTop/Listener/Templates.php
  203. library/XenForo/Route/Prefix/Members.php
  204. library/mkdgXenforoConversations/Tabs/MainTab.php
  205. library/mkdgPages/Tabs/OtherPagesTab.php
  206. library/XenForo/Route/Prefix/Pages.php
  207. library/MKDGCustomFieldSearch/Tabs/MainTab.php
  208. library/XenAdvShop/Tabs/MainTab.php
  209. library/XenAdvShop/Model/AdvShopModel.php
  210. library/WidgetFramework/Template/Extended.php
  211. library/XenForo/Model/StyleProperty.php
  212. library/DBTech/Security/XenForo/EventListener/TemplateCreate.php
  213. library/mkdgStyleEdit/Listener/TemplateHook.php
  214. library/Waindigo/CustomFields/Listener/TemplateHook.php
  215. library/Waindigo/Listener/TemplateHook.php
  216. library/Waindigo/Listener/TemplateHook/20150106.php
  217. library/Waindigo/Listener/Template.php
  218. library/Waindigo/Listener/Template/20150106.php
  219. library/Hex/Thumbnails/Listener/TemplateHook.php
  220. library/Hex/Listener/TemplateHook.php
  221. library/Hex/Listener/TemplateHook/20150106.php
  222. library/Hex/Listener/Template.php
  223. library/Hex/Listener/Template/20150106.php
  224. library/MKDGCustomFieldSearch/Listener/ThreadCreateHook.php
  225. library/MKDGCustomFieldSearch/Listener/MkdgHook.php
  226. library/XenForo/ControllerPublic/Post.php
  227. library/mkdgXenforoConversations/Listener/Template.php
  228. library/mkdgPages/Listener/HelpTabs.php
  229. library/XenAdvShop/Listener/ShowItems.php
  230. library/XenAdvInfo/Listener/Template.php
  231. library/Waindigo/Friends/Listener/TemplateHook.php
  232. library/Autolavka/Listener/addLinkHook.php
  233. library/SHNewYear/Listener.php
  234. library/SHNewYear/Listener2.php
  235. library/SHNewYear/Listener3.php
  236. library/SHNewYear/Listener4.php
  237. library/Waindigo/CustomFields/Listener/TemplatePostRender.php
  238. library/Waindigo/Listener/TemplatePostRender.php
  239. library/Waindigo/Listener/TemplatePostRender/20150106.php
  240. library/Hex/Thumbnails/Listener/TemplatePostRender.php
  241. library/Hex/Listener/TemplatePostRender.php
  242. library/Hex/Listener/TemplatePostRender/20150106.php
  243. library/Waindigo/Friends/Listener/TemplatePostRender.php
  244. library/XenAdvShop/Listener/Template.php
  245. library/Autolavka/Model/AutolavkaModel.php
  246. library/XenForo/Route/Prefix/Posts.php
  247. library/XenForo/Model/Avatar.php
  248. library/HtmlCustomTitles/Template/Helper/Core.php
  249. library/HtmlCustomTitles/Model/Permission.php
  250. library/XenForo/ViewPublic/Helper/User.php
  251. library/XenForo/Model/UserField.php
  252. library/Waindigo/CustomFields/Extend/XenForo/Model/UserField.php
  253. library/WidgetFramework/Helper/String.php
  254. library/XenForo/Helper/Criteria.php
  255. library/XenForo/Debug.php
  256. library/Audentio/UIX/Template/Helper/CanvasNavigation.php
  257. library/Zend/Exception.php
  258. library/DBTech/Security/XenForo/EventListener/TemplateHook.php
  259. library/XenForo/ViewRenderer/Json.php