<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://addonstudio.org/mw1/index.php?action=history&amp;feed=atom&amp;title=WoW%3AAPI_KBSetup_GetArticleHeaderData</id>
	<title>WoW:API KBSetup GetArticleHeaderData - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://addonstudio.org/mw1/index.php?action=history&amp;feed=atom&amp;title=WoW%3AAPI_KBSetup_GetArticleHeaderData"/>
	<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:API_KBSetup_GetArticleHeaderData&amp;action=history"/>
	<updated>2026-06-01T21:35:38Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://addonstudio.org/mw1/index.php?title=WoW:API_KBSetup_GetArticleHeaderData&amp;diff=18013&amp;oldid=prev</id>
		<title>Move page script: Move page script moved page API KBSetup GetArticleHeaderData to WoW:API KBSetup GetArticleHeaderData without leaving a redirect</title>
		<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:API_KBSetup_GetArticleHeaderData&amp;diff=18013&amp;oldid=prev"/>
		<updated>2023-08-15T04:46:49Z</updated>

		<summary type="html">&lt;p&gt;Move page script moved page &lt;a href=&quot;/wiki/WoW:API_KBSetup_GetArticleHeaderData&quot; title=&quot;WoW:API KBSetup GetArticleHeaderData&quot;&gt;API KBSetup GetArticleHeaderData&lt;/a&gt; to &lt;a href=&quot;/wiki/WoW:API_KBSetup_GetArticleHeaderData&quot; title=&quot;WoW:API KBSetup GetArticleHeaderData&quot;&gt;API KBSetup GetArticleHeaderData&lt;/a&gt; without leaving a redirect&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 04:46, 15 August 2023&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key addonstu_asmw2:diff::1.12:old-18012:rev-18013 --&gt;
&lt;/table&gt;</summary>
		<author><name>Move page script</name></author>
	</entry>
	<entry>
		<id>https://addonstudio.org/mw1/index.php?title=WoW:API_KBSetup_GetArticleHeaderData&amp;diff=18012&amp;oldid=prev</id>
		<title>WoWWiki&gt;Borlox: New page: {{wowapi}} __NOTOC__ &lt;div style=&quot;float: right&quot;&gt;&lt;small&gt;&#039;&#039;&#039;Main Page&#039;&#039;&#039;&lt;/small&gt;&lt;/div&gt; Returns header information about an article.   id, title, isHot, isNew = KBSetup_GetA...</title>
		<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:API_KBSetup_GetArticleHeaderData&amp;diff=18012&amp;oldid=prev"/>
		<updated>2008-04-18T17:12:04Z</updated>

		<summary type="html">&lt;p&gt;New page: {{wowapi}} __NOTOC__ &amp;lt;div style=&amp;quot;float: right&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;a href=&quot;/mw1/index.php?title=User:Borlox/KB&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;User:Borlox/KB (page does not exist)&quot;&gt;Main Page&lt;/a&gt;&amp;#039;&amp;#039;&amp;#039;&amp;lt;/small&amp;gt;&amp;lt;/div&amp;gt; Returns header information about an article.   id, title, isHot, isNew = KBSetup_GetA...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{wowapi}} __NOTOC__&lt;br /&gt;
Returns header information about an article.&lt;br /&gt;
&lt;br /&gt;
 id, title, isHot, isNew = KBSetup_GetArticleHeaderData(index)&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
:(index)&lt;br /&gt;
&lt;br /&gt;
:;index : Integer - The articles index for that page.&lt;br /&gt;
&lt;br /&gt;
=== Returns ===&lt;br /&gt;
:id, title, isHot, isNew&lt;br /&gt;
&lt;br /&gt;
:;id : Integer - The article&amp;#039;s id.&lt;br /&gt;
:;title : String - The article&amp;#039;s title.&lt;br /&gt;
:;isHot : Boolean - Show the &amp;quot;hot&amp;quot; symbol or not&lt;br /&gt;
:;isNew : Boolean - Show the &amp;quot;new&amp;quot; symbol or not&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
  local id, title, isHot, isNew = KBSetup_GetArticleHeaderData(1)&lt;br /&gt;
  if isNew then&lt;br /&gt;
    ChatFrame1:AddMessage(&amp;quot;The article &amp;quot; .. id .. &amp;quot;(&amp;quot; .. title .. &amp;quot;) is new.&amp;quot;, 1.0, 1.0, 1.0)&lt;br /&gt;
  end&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
* This will work on the &amp;quot;most asked&amp;quot; articles, not the articles of the active query.&lt;/div&gt;</summary>
		<author><name>WoWWiki&gt;Borlox</name></author>
	</entry>
</feed>