Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
mesh
meshmap
Commits
58f8be72
Commit
58f8be72
authored
May 01, 2018
by
Eric - kg6wxc
Browse files
whoops missed a quote in the right spot...
parent
8fbe3dfe
Changes
2
Hide whitespace changes
Inline
Side-by-side
scripts/get-map-info.php
View file @
58f8be72
...
...
@@ -74,7 +74,7 @@ $INCLUDE_DIR = "..";
//check for users user-settings.ini file and use it if it exists
//use the default one if it does not
global
$USER_SETTINGS
;
if
(
file_exists
(
"
$INCLUDE_DIR
. /scripts/user-settings.ini"
))
{
if
(
file_exists
(
$INCLUDE_DIR
.
"
/scripts/user-settings.ini"
))
{
$USER_SETTINGS
=
parse_ini_file
(
$INCLUDE_DIR
.
"/scripts/user-settings.ini"
);
}
else
{
echo
"
\n\n
You **must** copy the user-settings.ini-default file to user-settings.ini and edit it!!
\n\n
"
;
...
...
webpage/map_display.php
View file @
58f8be72
...
...
@@ -130,7 +130,7 @@ $INCLUDE_DIR = "..";
//check for users user-settings.ini file and use it if it exists
//use the default one if it does not
global
$USER_SETTINGS
;
if
(
file_exists
(
"
$INCLUDE_DIR
. /scripts/user-settings.ini"
))
{
if
(
file_exists
(
$INCLUDE_DIR
.
"
/scripts/user-settings.ini"
))
{
$USER_SETTINGS
=
parse_ini_file
(
$INCLUDE_DIR
.
"/scripts/user-settings.ini"
);
}
else
{
echo
"You <strong><em>must</em></strong> copy the user-settings.ini-default file to user-settings.ini and edit it!
\n
"
;
...
...
@@ -139,7 +139,7 @@ if (file_exists("$INCLUDE_DIR . /scripts/user-settings.ini")) {
global
$MESH_SETTINGS
;
//check for users user-settings.ini file and use it if it exists
//use the default one if it does not
if
(
file_exists
(
"
$INCLUDE_DIR
. /scripts/meshmap-settings.ini"
))
{
if
(
file_exists
(
$INCLUDE_DIR
.
"
/scripts/meshmap-settings.ini"
))
{
$MESH_SETTINGS
=
parse_ini_file
(
$INCLUDE_DIR
.
"/scripts/meshmap-settings.ini"
);
}
else
{
$MESH_SETTINGS
=
parse_ini_file
(
$INCLUDE_DIR
.
"/scripts/meshmap-settings.ini-default"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment