.
/**
* @package MantisBT
* @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*/
/**
* MantisBT Core API's
*/
require_once( 'core.php' );
require_once( 'news_api.php' );
require_once( 'string_api.php' );
news_ensure_enabled();
access_ensure_project_level( VIEWER );
html_page_top();
?>
0 ) {
echo '
';
}
# Loop through results
for ( $i=0 ; $i < $t_count ; $i++ ) {
extract( $rows[$i], EXTR_PREFIX_ALL, 'v' );
if ( VS_PRIVATE == $v_view_state &&
! access_has_project_level( config_get( 'private_news_threshold' ), $v_project_id ) ) {
continue;
}
$v_headline = string_display( $v_headline );
$v_date_posted = date( config_get( 'complete_date_format' ), $v_date_posted );
$t_notes = array();
$t_note_string = '';
if ( 1 == $v_announcement ) {
array_push( $t_notes, lang_get( 'announcement' ) );
}
if ( VS_PRIVATE == $v_view_state ) {
array_push( $t_notes, lang_get( 'private' ) );
}
if ( count( $t_notes ) > 0 ) {
$t_note_string = '['.implode( ' ', $t_notes ).']';
}
echo "- $v_date_posted - $v_headline ";
print_user( $v_poster_id );
echo ' ' . $t_note_string;
echo "
";
} # end for loop
if ( $t_count > 0 ) {
echo '
';
}
html_page_bottom();