|
From: Benjamin C. <bc...@us...> - 2002-05-06 12:47:34
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv25919/templates/default
Modified Files:
footer.html
Log Message:
Fixes bug #551012 - Unable to login from the account creation page
Index: footer.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/footer.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- footer.html 3 Apr 2002 19:01:04 -0000 1.2
+++ footer.html 6 May 2002 12:47:31 -0000 1.3
@@ -5,7 +5,11 @@
 
</td>
<td height="30" class="bottomnav">
- <form method="post" action="{$smarty.server.REQUEST_URI}">
+ {if NO_AUTH}
+ <form method="post" action="index.php">
+ {else}
+ <form method="post" action="{$smarty.server.REQUEST_URI}">
+ {/if}
{if not $smarty.session.uid}
{if EMAIL_IS_LOGIN}
|