Skip to content

Commit

Permalink
Replaced some double quotes with single quotes in config_defaults_inc…
Browse files Browse the repository at this point in the history
….php

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@1848 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Jeroen Latour committed Feb 15, 2003
1 parent 151ee4e commit 4c67cb0
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions config_defaults_inc.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: config_defaults_inc.php,v 1.74 2003-02-15 20:56:10 jlatour Exp $
# $Id: config_defaults_inc.php,v 1.75 2003-02-15 21:11:58 jlatour Exp $
# --------------------------------------------------------


Expand Down Expand Up @@ -437,7 +437,7 @@
# This is the master setting to disable *all* file uploading functionality
#
# If you want to allow file uploads, you must also make sure that they are
# enabled in php. You may need to add "file_uploads = TRUE" to your php.ini
# enabled in php. You may need to add 'file_uploads = TRUE' to your php.ini
#
# See also: $g_upload_project_file_threshold, $g_upload_bug_file_threshold,
# $g_allow_reporter_upload
Expand Down Expand Up @@ -475,7 +475,7 @@

# do NOT include href or img tags here
# do NOT include tags that have parameters (eg. <font face="arial">)
$g_html_valid_tags = "p, li, ul, ol, br, pre, i, b, u";
$g_html_valid_tags = 'p, li, ul, ol, br, pre, i, b, u';

# --- table tags ------------------
# this is inserted into the outermost tables ( tags like border, cellspacing, etc)
Expand Down Expand Up @@ -806,28 +806,28 @@
###########################
#----------------------------------
# Specify your top/bottom include file (logos, banners, etc)
$g_bottom_include_page = $g_absolute_path."";
$g_top_include_page = $g_absolute_path."";
$g_bottom_include_page = $g_absolute_path.'';
$g_top_include_page = $g_absolute_path.'';
# CSS file
$g_css_include_file = $g_path."css/default.css";
$g_css_include_file = $g_path.'css/default.css';
# meta tags
$g_meta_include_file = $g_absolute_path."meta_inc.php";
$g_meta_include_file = $g_absolute_path.'meta_inc.php';
#----------------------------------
# Internal includes
$g_bugnote_include_file = $g_absolute_path."bugnote_inc.php";
$g_history_include_file = $g_absolute_path."history_inc.php";
$g_print_bugnote_include_file = $g_absolute_path."print_bugnote_inc.php";
$g_view_all_include_file = $g_absolute_path."view_all_inc.php";
$g_bug_view_inc = $g_absolute_path."bug_view_inc.php";
$g_bug_file_upload_inc = $g_absolute_path."bug_file_upload_inc.php";
$g_bugnote_include_file = $g_absolute_path.'bugnote_inc.php';
$g_history_include_file = $g_absolute_path.'history_inc.php';
$g_print_bugnote_include_file = $g_absolute_path.'print_bugnote_inc.php';
$g_view_all_include_file = $g_absolute_path.'view_all_inc.php';
$g_bug_view_inc = $g_absolute_path.'bug_view_inc.php';
$g_bug_file_upload_inc = $g_absolute_path.'bug_file_upload_inc.php';
#----------------------------------

###########################
# Redirections
###########################
# ---------------------------------
# Specify where the user should be sent after logging out.
$g_logout_redirect_page = $g_path."login_page.php";
$g_logout_redirect_page = $g_path.'login_page.php';

###########################
# Headers
Expand Down

0 comments on commit 4c67cb0

Please sign in to comment.