.
# --------------------------------------------------------
# $Id: proj_doc_edit_page.php,v 1.39.2.1 2007-10-13 22:34:24 giallu Exp $
# --------------------------------------------------------
require_once( 'core.php' );
$t_core_path = config_get( 'core_path' );
require_once( $t_core_path.'string_api.php' );
# Check if project documentation feature is enabled.
if ( OFF == config_get( 'enable_project_documentation' ) ||
!file_is_uploading_enabled() ||
!file_allow_project_upload() ) {
access_denied();
}
$f_file_id = gpc_get_int( 'file_id' );
$c_file_id = db_prepare_int( $f_file_id );
$t_project_id = file_get_field( $f_file_id, 'project_id', 'project' );
access_ensure_project_level( config_get( 'upload_project_file_threshold' ), $t_project_id );
$t_proj_file_table = config_get( 'mantis_project_file_table' );
$query = "SELECT *
FROM $t_proj_file_table
WHERE id='$c_file_id'";
$result = db_query( $query );
$row = db_fetch_array( $result );
extract( $row, EXTR_PREFIX_ALL, 'v' );
$v_title = string_attribute( $v_title );
$v_description = string_textarea( $v_description );
$t_max_file_size = (int)min( ini_get_number( 'upload_max_filesize' ), ini_get_number( 'post_max_size' ), config_get( 'max_file_size' ) );
?>