Change 'unRAID' to 'Unraid' to match new branding.

Updated a few copyright strings.
This commit is contained in:
Tom Mortensen
2018-08-31 12:58:40 -07:00
parent 56d1f6672c
commit 6668ad0ec5
44 changed files with 120 additions and 120 deletions
@@ -228,13 +228,13 @@ if ($_GET['xmlTemplate']) {
if ($arrConfig['Type'] == 'Path' && strtolower($arrConfig['Target']) == '/unraid') {
$arrConfig['Default'] = $arrConfig['Value'] = realpath($dockercfg['DOCKER_APP_UNRAID_PATH']);
$arrConfig['Display'] = 'hidden';
$arrConfig['Name'] = 'unRAID Share Path';
$arrConfig['Name'] = 'Unraid Share Path';
$boolFound = true;
}
}
if (!$boolFound) {
$xml['Config'][] = [
'Name' => 'unRAID Share Path',
'Name' => 'Unraid Share Path',
'Target' => '/unraid',
'Default' => realpath($dockercfg['DOCKER_APP_UNRAID_PATH']),
'Value' => realpath($dockercfg['DOCKER_APP_UNRAID_PATH']),
@@ -735,7 +735,7 @@ span.cpu,label.checkbox{display:inline-block;width:32px}
<tr>
<td colspan="2">
<blockquote class="inline_help">
<p>Templates are a quicker way to setting up Docker Containers on your unRAID server. There are two types of templates:</p>
<p>Templates are a quicker way to setting up Docker Containers on your Unraid server. There are two types of templates:</p>
<p>
<b>Default templates</b><br>
@@ -257,7 +257,7 @@ function xmlToCommand($xml, $create_paths=false) {
// Bind Time
$Variables[] = 'TZ="' . $var['timeZone'] . '"';
// Add HOST_OS variable
$Variables[] = 'HOST_OS="unRAID"';
$Variables[] = 'HOST_OS="Unraid"';
foreach ($xml['Config'] as $key => $config) {
$confType = strtolower(strval($config['Type']));