First post on all pages of 1.1 for XenForo 1.1

INSTALLATION:
===================================
1. Upload Files
2. Import product
3. In the template 'thread_view' find:
=================
					<xen:if is="{$thread.canInlineMod}">
					<form action="{xen:link inline-mod/thread/switch}" method="post" class="InlineModForm sectionFooter" id="threadViewThreadCheck"
						data-cookieName="threads">
						<label><input type="checkbox" name="threads[]" value="{$thread.thread_id}" class="InlineModCheck" /> {xen:phrase select_for_thread_moderation}</label>
						<input type="hidden" name="_xfToken" value="{$visitor.csrf_token_page}" />
					</form>
					</xen:if>
=================
add after:
=================
					<xen:if is="{$canMoveThread}">
					<form action="{xen:link threads/sticky-first-post, $thread, 'page={$page}'}" method="post" class="AutoValidator visibilityForm sectionFooter">
							<label><input type="checkbox" name="firstpoststicked" value="1" class="SubmitOnChange" <xen:if is="{$thread.firstpoststicked} == 1">checked="checked"</xen:if>/>
								{xen:phrase sticky_first_post}</label>

							<input type="hidden" name="_xfToken" value="{$visitor.csrf_token_page}" />
					</form>
                                        </xen:if>
=================
Done.
===================================

Usage:
 In the subject, click on Thread Tools (this topic) -> Sticky first post

13.12.2011 GiveMeABreak