Sindbad~EG File Manager
<?php
# MantisBT - A PHP based bugtracking system
# MantisBT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# MantisBT is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MantisBT. If not, see <http://www.gnu.org/licenses/>.
/**
* This file contains configuration checks for display/html issues
*
* @package MantisBT
* @copyright Copyright 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*
* @uses check_api.php
* @uses config_api.php
*/
if( !defined( 'CHECK_DISPLAY_INC_ALLOW' ) ) {
return;
}
# MantisBT Check API
require_once( 'check_api.php' );
require_api( 'config_api.php' );
check_print_section_header_row( 'Display' );
# Test length of OpenSearch ShortNames
$t_prefix = config_get( 'search_title' );
$t_shortname_text = sprintf( lang_get( 'opensearch_text_short' ), $t_prefix );
$t_shortname_id = sprintf( lang_get( 'opensearch_id_short' ), $t_prefix );
$t_shortname_length = max( strlen( $t_shortname_text ), strlen( $t_shortname_id ) );
check_print_test_warn_row(
"Browser Search engine names must be 16 chars or less",
$t_shortname_length <= 16,
array( false => 'Either shorten the "search_title" configuration option to '
. 'a maximum of ' . ( 16 - $t_shortname_length + strlen( $t_prefix ) )
. ' characters, or alter the "opensearch_XXX_short" language strings '
. 'as appropriate to meet the <a href="http://www.opensearch.org/">'
. 'OpenSearch 1.1</a> specification for the ShortName element.'
)
);
check_print_test_row(
'bug_link_tag is not blank/null',
config_get_global( 'bug_link_tag' ),
array( false => 'The value of the bug_link_tag option cannot be blank/null.' )
);
check_print_test_row(
'bugnote_link_tag is not blank/null',
config_get_global( 'bugnote_link_tag' ),
array( false => 'The value of the bugnote_link_tag option cannot be blank/null.' )
);
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists