. /** * @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' ); require_once( 'print_api.php' ); news_ensure_enabled(); form_security_validate( 'news_update' ); $f_news_id = gpc_get_int( 'news_id' ); $f_project_id = gpc_get_int( 'project_id' ); $f_view_state = gpc_get_int( 'view_state' ); $f_headline = gpc_get_string( 'headline' ); $f_announcement = gpc_get_bool( 'announcement' ); $f_body = gpc_get_string( 'body', '' ); $row = news_get_row( $f_news_id ); # Check both the old project and the new project access_ensure_project_level( config_get( 'manage_news_threshold' ), $row['project_id'] ); access_ensure_project_level( config_get( 'manage_news_threshold' ), $f_project_id ); news_update( $f_news_id, $f_project_id, $f_view_state, $f_announcement, $f_headline, $f_body ); form_security_purge( 'news_update' ); html_page_top(); ?>


'; print_news_entry( $f_headline, $f_body, $row['poster_id'], $f_view_state, $f_announcement, $row['date_posted'] ); ?>