|
From: Paul S. O. <ps...@us...> - 2002-05-19 15:11:20
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv6293
Modified Files:
Tag: phpBB-2_0_0
memberlist.php posting.php
Log Message:
More fixes
Index: memberlist.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/memberlist.php,v
retrieving revision 1.36
retrieving revision 1.36.2.1
diff -C2 -r1.36 -r1.36.2.1
*** memberlist.php 31 Mar 2002 00:06:33 -0000 1.36
--- memberlist.php 19 May 2002 15:11:17 -0000 1.36.2.1
***************
*** 34,38 ****
//
! $start = ( isset($HTTP_GET_VARS['start']) ) ? $HTTP_GET_VARS['start'] : 0;
if(isset($HTTP_POST_VARS['order']))
--- 34,38 ----
//
! $start = ( isset($HTTP_GET_VARS['start']) ) ? intval($HTTP_GET_VARS['start']) : 0;
if(isset($HTTP_POST_VARS['order']))
***************
*** 59,63 ****
{
$selected = ( $mode == $mode_types[$i] ) ? ' selected="selected"' : '';
! $select_sort_mode .= "<option value=\"" . $mode_types[$i] . "\"$selected>" . $mode_types_text[$i] . "</option>";
}
$select_sort_mode .= '</select>';
--- 59,63 ----
{
$selected = ( $mode == $mode_types[$i] ) ? ' selected="selected"' : '';
! $select_sort_mode .= '<option value="' . $mode_types[$i] . '"' . $selected . '>' . $mode_types_text[$i] . '</option>';
}
$select_sort_mode .= '</select>';
Index: posting.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/posting.php,v
retrieving revision 1.159.2.5
retrieving revision 1.159.2.6
diff -C2 -r1.159.2.5 -r1.159.2.6
*** posting.php 19 May 2002 15:02:08 -0000 1.159.2.5
--- posting.php 19 May 2002 15:11:17 -0000 1.159.2.6
***************
*** 57,62 ****
}
-
-
$refresh = $preview || $poll_add || $poll_edit || $poll_delete;
--- 57,60 ----
***************
*** 64,68 ****
// Set topic type
//
! $topic_type = ( !empty($HTTP_POST_VARS['topictype']) ) ? $HTTP_POST_VARS['topictype'] : POST_NORMAL;
//
--- 62,66 ----
// Set topic type
//
! $topic_type = ( !empty($HTTP_POST_VARS['topictype']) ) ? intval($HTTP_POST_VARS['topictype']) : POST_NORMAL;
//
***************
*** 359,363 ****
// Set toggles for various options
//
! if( !$board_config['allow_html'] )
{
$html_on = 0;
--- 357,361 ----
// Set toggles for various options
//
! if ( !$board_config['allow_html'] )
{
$html_on = 0;
***************
*** 368,372 ****
}
! if( !$board_config['allow_bbcode'] )
{
$bbcode_on = 0;
--- 366,370 ----
}
! if ( !$board_config['allow_bbcode'] )
{
$bbcode_on = 0;
***************
*** 377,381 ****
}
! if( !$board_config['allow_smilies'] )
{
$smilies_on = 0;
--- 375,379 ----
}
! if ( !$board_config['allow_smilies'] )
{
$smilies_on = 0;
|