mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-09 12:58:52 +00:00
Now allow for GET based session
git-svn-id: file:///svn/phpbb/trunk@258 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
93fb7ac165
commit
4e056b99a9
5 changed files with 38 additions and 36 deletions
|
@ -63,7 +63,9 @@ else
|
||||||
|
|
||||||
$pagetype = "newtopic";
|
$pagetype = "newtopic";
|
||||||
$page_title = " $l_postnew";
|
$page_title = " $l_postnew";
|
||||||
$sql = "SELECT forum_name, forum_access FROM ".FORUMS_TABLE." WHERE forum_id = '$forum_id'";
|
$sql = "SELECT forum_name, forum_access
|
||||||
|
FROM ".FORUMS_TABLE."
|
||||||
|
WHERE forum_id = '$forum_id'";
|
||||||
if(!$result = $db->sql_query($sql))
|
if(!$result = $db->sql_query($sql))
|
||||||
{
|
{
|
||||||
error_die(SQL_QUERY, "Could not obtain forum/forum access information.", __LINE__, __FILE__);
|
error_die(SQL_QUERY, "Could not obtain forum/forum access information.", __LINE__, __FILE__);
|
||||||
|
@ -152,27 +154,33 @@ else
|
||||||
}
|
}
|
||||||
$notify_toggle .= "> $l_notify";
|
$notify_toggle .= "> $l_notify";
|
||||||
|
|
||||||
|
$hidden_form_fields = "<input type=\"hidden\" name=\"mode\" value=\"$mode\"><input type=\"hidden\" name=\"forum_id\" value=\"$forum_id\"><input type=\"hidden\" name=\"topic_id\" value=\"$topic_id\">";
|
||||||
|
|
||||||
$template->assign_vars(array("L_ABOUTPOST" => $l_aboutpost,
|
$template->assign_vars(array(
|
||||||
"L_SUBJECT" => $l_subject,
|
"L_ABOUT_POST" => $l_aboutpost,
|
||||||
"L_MESSAGEBODY" => $l_body,
|
"L_SUBJECT" => $l_subject,
|
||||||
"L_OPTIONS" => $l_options,
|
"L_MESSAGE_BODY" => $l_body,
|
||||||
"L_PREVIEW" => $l_preview,
|
"L_OPTIONS" => $l_options,
|
||||||
"L_SUBMIT" => $l_submit,
|
"L_PREVIEW" => $l_preview,
|
||||||
"L_CANCEL" => $l_cancelpost,
|
"L_SUBMIT" => $l_submit,
|
||||||
"MODE" => $mode,
|
"L_CANCEL" => $l_cancelpost,
|
||||||
"ABOUT_POSTING" => $about_posting,
|
|
||||||
"USERNAME_INPUT" => $username_input,
|
"ABOUT_POSTING" => $about_posting,
|
||||||
"PASSWORD_INPUT" => $password_input,
|
"USERNAME_INPUT" => $username_input,
|
||||||
"SUBJECT_INPUT" => $subject_input,
|
"PASSWORD_INPUT" => $password_input,
|
||||||
"MESSAGE_INPUT" => $message_input,
|
"SUBJECT_INPUT" => $subject_input,
|
||||||
"HTML_STATUS" => $html_status,
|
"MESSAGE_INPUT" => $message_input,
|
||||||
"HTML_TOGGLE" => $html_toggle,
|
"HTML_STATUS" => $html_status,
|
||||||
"SMILE_TOGGLE" => $smile_toggle,
|
"HTML_TOGGLE" => $html_toggle,
|
||||||
"SIG_TOGGLE" => $sig_toggle,
|
"SMILE_TOGGLE" => $smile_toggle,
|
||||||
"NOTIFY_TOGGLE" => $notify_toggle,
|
"SIG_TOGGLE" => $sig_toggle,
|
||||||
"BBCODE_TOGGLE" => $bbcode_toggle,
|
"NOTIFY_TOGGLE" => $notify_toggle,
|
||||||
"BBCODE_STATUS" => $bbcode_status));
|
"BBCODE_TOGGLE" => $bbcode_toggle,
|
||||||
|
"BBCODE_STATUS" => $bbcode_status,
|
||||||
|
|
||||||
|
"S_POST_ACTION" => append_sid("posting.$phpEx"),
|
||||||
|
"S_HIDDEN_FORM_FIELDS" => $hidden_form_fields)
|
||||||
|
);
|
||||||
$template->pparse("body");
|
$template->pparse("body");
|
||||||
include('includes/page_tail.'.$phpEx);
|
include('includes/page_tail.'.$phpEx);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" style="{font-size: 8pt;}">
|
<td align="center" style="{font-size: 8pt;}">
|
||||||
{L_POSTNEWIN}<br>
|
{L_POSTNEWIN}<br>
|
||||||
<a href="viewforum.{PHPEX}?{S_FORUMS_URL}={FORUM_ID}">{FORUM_NAME}</a>
|
<a href="{U_VIEW_FORUM}">{FORUM_NAME}</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td><form action="posting.{PHPEX}" method="POST">
|
<td><form action="{S_POST_ACTION}" method="post">
|
||||||
<table border="0" align="center" width="100%" bgcolor="#000000" cellpadding="0" cellspacing="1">
|
<table border="0" align="center" width="100%" bgcolor="#000000" cellpadding="0" cellspacing="1">
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<table border="0" width="100%" cellpadding="3" cellspacing="1">
|
<table border="0" width="100%" cellpadding="3" cellspacing="1">
|
||||||
<tr class="tablebody">
|
<tr class="tablebody">
|
||||||
<td bgcolor="#DDDDDD" width="15%">{L_ABOUTPOST}</td>
|
<td bgcolor="#DDDDDD" width="15%">{L_ABOUT_POST}</td>
|
||||||
<td bgcolor="#CCCCCC">{ABOUT_POSTING}</td>
|
<td bgcolor="#CCCCCC">{ABOUT_POSTING}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="tablebody">
|
<tr class="tablebody">
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
<td bgcolor="#CCCCCC">{SUBJECT_INPUT}</td>
|
<td bgcolor="#CCCCCC">{SUBJECT_INPUT}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="tablebody">
|
<tr class="tablebody">
|
||||||
<td bgcolor="#DDDDDD">{L_MESSAGEBODY}<br><br>
|
<td bgcolor="#DDDDDD">{L_MESSAGE_BODY}<br><br>
|
||||||
{HTML_STATUS}<br>{BBCODE_STATUS}</td>
|
{HTML_STATUS}<br>{BBCODE_STATUS}</td>
|
||||||
<td bgcolor="#CCCCCC">{MESSAGE_INPUT}</td>
|
<td bgcolor="#CCCCCC">{MESSAGE_INPUT}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -30,14 +30,8 @@
|
||||||
<td bgcolor="#CCCCCC">
|
<td bgcolor="#CCCCCC">
|
||||||
{HTML_TOGGLE}<br>{BBCODE_TOGGLE}<br>{SMILE_TOGGLE}<br>{SIG_TOGGLE}<br>{NOTIFY_TOGGLE}</td>
|
{HTML_TOGGLE}<br>{BBCODE_TOGGLE}<br>{SMILE_TOGGLE}<br>{SIG_TOGGLE}<br>{NOTIFY_TOGGLE}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="tableheader">
|
<tr class="tableheader">
|
||||||
<td align="center" colspan="2">
|
<td align="center" colspan="2">{S_HIDDEN_POST_FIELDS}<input type="submit" name="preview" value="{L_PREVIEW}"> <input type="submit" name="submit" value="{L_SUBMIT}"> <input type="submit" name="cancel" value="{L_CANCEL}"></td>
|
||||||
<input type="hidden" name="mode" value="{MODE}">
|
|
||||||
<input type="hidden" name="forum_id" value="{FORUM_ID}">
|
|
||||||
<input type="hidden" name="topic_id" value="{TOPIC_ID}">
|
|
||||||
<input type="submit" name="preview" value="{L_PREVIEW}">
|
|
||||||
<input type="submit" name="submit" value="{L_SUBMIT}">
|
|
||||||
<input type="submit" name="cancel" value="{L_CANCEL}"></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<div align="center"><table width="98%" cellspacing="0" cellpadding="4" border="0">
|
<div align="center"><table width="98%" cellspacing="0" cellpadding="4" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><font face="{T_FONTFACE1}" size="{T_FONTSIZE1}" color="{T_FONTCOLOR1}"><a href="/">{SITENAME} {L_INDEX}</a> -> {FORUM_NAME}</font></td>
|
<td align="left"><font face="{T_FONTFACE1}" size="{T_FONTSIZE1}" color="{T_FONTCOLOR1}"><a href="{U_INDEX}">{SITENAME} {L_INDEX}</a> -> {FORUM_NAME}</font></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table></div>
|
</table></div>
|
|
@ -1,5 +1,5 @@
|
||||||
<div align="center"><table width="98%" cellpadding="1" cellspacing="0" border="0">
|
<div align="center"><table width="98%" cellpadding="1" cellspacing="0" border="0">
|
||||||
<tr><form action="{PHP_SELF}" method="POST">
|
<tr><form action="{S_POST_ACTION}" method="POST">
|
||||||
<td bgcolor="{T_TH_COLOR1}"><table border="0" cellpadding="3" cellspacing="1" width="100%">
|
<td bgcolor="{T_TH_COLOR1}"><table border="0" cellpadding="3" cellspacing="1" width="100%">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" bgcolor="{T_TH_COLOR3}"><font face="{T_FONTFACE1}" size="{T_FONTSIZE2}"><b>Post a Topic</b></font></td>
|
<td colspan="2" bgcolor="{T_TH_COLOR3}"><font face="{T_FONTFACE1}" size="{T_FONTSIZE2}"><b>Post a Topic</b></font></td>
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
<td bgcolor="{T_TD_COLOR2}"><font face="{T_FONTFACE1}" size="{T_FONTSIZE2}">{HTML_TOGGLE}<br />{BBCODE_TOGGLE}<br />{SMILE_TOGGLE}<br />{SIG_TOGGLE}<br />{NOTIFY_TOGGLE}</font></td>
|
<td bgcolor="{T_TD_COLOR2}"><font face="{T_FONTFACE1}" size="{T_FONTSIZE2}">{HTML_TOGGLE}<br />{BBCODE_TOGGLE}<br />{SMILE_TOGGLE}<br />{SIG_TOGGLE}<br />{NOTIFY_TOGGLE}</font></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" bgcolor="{T_TH_COLOR3}" align="center"><input type="hidden" name="mode" value="{MODE}"><input type="hidden" name="forum_id" value="{FORUM_ID}"><input type="hidden" name="topic_id" value="{TOPIC_ID}"><input type="submit" name="preview" value="{L_PREVIEW}"> <input type="submit" name="submit" value="{L_SUBMIT}"> <input type="submit" name="cancel" value="{L_CANCEL}"></td>
|
<td colspan="2" bgcolor="{T_TH_COLOR3}" align="center">{S_HIDDEN_FORM_FIELDS}<input type="submit" name="preview" value="{L_PREVIEW}"> <input type="submit" name="submit" value="{L_SUBMIT}"> <input type="submit" name="cancel" value="{L_CANCEL}"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table></td>
|
</table></td>
|
||||||
</form></tr>
|
</form></tr>
|
||||||
|
|
Loading…
Add table
Reference in a new issue