# Zoints SEO 2.2.2
# Copyright (C) 2006  Zoints Inc
# 
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
# 
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
# 
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
# 

         TEMPLATE: FORUMDISPLAY
________________________________________

Only perform these template edits if the automated template edits do not work. If you
do these edits, disable the plugin "Zoints SEO (template: FORUMDISPLAY)" in the Plugin Manager.

	AdminCP > Plugin System > Plugin Manager

To disable the plugin, uncheck "Active" next to the "Zoints SEO (template: FORUMDISPLAY)" plugin
and then press the "Disable Active Status" button.


Find:
==================================================
<form action="forumdisplay.php" method="get">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="f" value="$forumid" />
<input type="hidden" name="page" value="$pagenumber" />
<input type="hidden" name="pp" value="$perpage" />
==================================================
Replace With:
==================================================
<if condition="$show['zointsurl']">
<form action="" method="get">
<else />
<form action="forumdisplay.php" method="get">
<input type="hidden" name="f" value="$forumid" />
<input type="hidden" name="page" value="$pagenumber" />
</if>
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="pp" value="$perpage" />
==================================================


