|
From: Paul S. O. <ps...@us...> - 2001-11-24 15:57:35
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv17540
Modified Files:
posting.php viewforum.php viewtopic.php
Log Message:
Reminder to self, checking files at 2am bad, checking files at 2pm good
Index: posting.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/posting.php,v
retrieving revision 1.107
retrieving revision 1.108
diff -C2 -r1.107 -r1.108
*** posting.php 2001/11/23 21:09:37 1.107
--- posting.php 2001/11/24 15:57:31 1.108
***************
*** 981,985 ****
else
{
! $message = $lang['Sorry_auth'] . $is_auth[$is_auth_type . "_type"] . $auth_string . $lang['this_forum'];
}
--- 981,985 ----
else
{
! $message = sprintf($lang['Sorry_' . $is_auth_type], $is_auth[$is_auth_type . "_type"]);
}
***************
*** 2709,2714 ****
"L_PREVIEW" => $lang['Preview'],
"L_SPELLCHECK" => $lang['Spellcheck'],
! "L_SUBMIT" => $lang['Submit_post'],
! "L_CANCEL" => $lang['Cancel_post'],
"L_CONFIRM_DELETE" => $lang['Confirm_delete'],
"L_DISABLE_HTML" => $lang['Disable_HTML_post'],
--- 2709,2714 ----
"L_PREVIEW" => $lang['Preview'],
"L_SPELLCHECK" => $lang['Spellcheck'],
! "L_SUBMIT" => $lang['Submit'],
! "L_CANCEL" => $lang['Cancel'],
"L_CONFIRM_DELETE" => $lang['Confirm_delete'],
"L_DISABLE_HTML" => $lang['Disable_HTML_post'],
Index: viewforum.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewforum.php,v
retrieving revision 1.104
retrieving revision 1.105
diff -C2 -r1.104 -r1.105
*** viewforum.php 2001/11/23 09:31:59 1.104
--- viewforum.php 2001/11/24 15:57:31 1.105
***************
*** 100,106 ****
// The user is not authed to read this forum ...
//
! $msg = $lang['Sorry_auth'] . $is_auth['auth_read_type'] . $lang['can_read'] . $lang['this_forum'];
! message_die(GENERAL_MESSAGE, $msg);
}
//
--- 100,106 ----
// The user is not authed to read this forum ...
//
! $message = sprintf($lang['Sorry_auth_read'], $is_auth['auth_read_type']);
! message_die(GENERAL_MESSAGE, $message);
}
//
Index: viewtopic.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewtopic.php,v
retrieving revision 1.140
retrieving revision 1.141
diff -C2 -r1.140 -r1.141
*** viewtopic.php 2001/11/20 02:24:41 1.140
--- viewtopic.php 2001/11/24 15:57:31 1.141
***************
*** 193,199 ****
// The user is not authed to read this forum ...
//
! $msg = $lang['Sorry_auth'] . $is_auth['auth_read_type'] . $lang['can_read'] . $lang['this_forum'];
! message_die(GENERAL_MESSAGE, $msg);
}
//
--- 193,199 ----
// The user is not authed to read this forum ...
//
! $message = sprintf($lang['Sorry_auth_read'], $is_auth['auth_read_type']);
! message_die(GENERAL_MESSAGE, $message);
}
//
|