Page MenuHomeIn-Portal Phabricator

in-portal
No OneTemporary

File Metadata

Created
Wed, Feb 12, 9:45 AM

in-portal

Index: branches/RC/core/install/step_templates/select_license.tpl
===================================================================
--- branches/RC/core/install/step_templates/select_license.tpl (revision 11900)
+++ branches/RC/core/install/step_templates/select_license.tpl (revision 11901)
@@ -1,41 +1,41 @@
<?php
$license_found = $this->toolkit->getSystemConfig('Intechnic', 'License');
$license_source = $this->GetVar('license_source');
if (($license_source === false) && $license_found) {
$license_source = 3;
}
if (!$license_found && $license_source == 3) {
// when disabled option is selected -> select 1st available
$license_source = 1;
}
?>
<tr class="table-color2">
<td class="text">
<input type="radio" name="license_source" id="license_source_1" value="1"<?php if ($license_source == 1) echo ' checked'; ?>><label for="license_source_1">Download from Intechnic</label>
</td>
</tr>
<tr class="table-color2">
<td class="text">
<input type="radio" name="license_source" id="license_source_2" value="2"<?php if ($license_source == 2) echo ' checked'; ?>><label for="license_source_2">Upload License File:</label>
<input type="file" class="button" name="license_file" onclick="document.getElementById('license_source_2').checked = true;">
</td>
</tr>
<tr class="table-color2">
<?php
?>
<td class="text">
<input <?php if (!$license_found) echo 'disabled="disabled"'; ?> type="radio" name="license_source" id="license_source_3" value="3"<?php if ($license_source == 3) echo ' checked'; ?>><label for="license_source_3">Use Existing License</label>
</td>
</tr>
<tr class="table-color2">
<td class="text">
- <input type="radio" name="license_source" id="license_source_4" value="4"<?php if ($license_source == 4) echo ' checked'; ?>><label for="license_source_4">Skip License (Local Domain Installation)</label>
+ <input type="radio" name="license_source" id="license_source_4" value="4"<?php if ($license_source == 4) echo ' checked'; ?>><label for="license_source_4">GPL/Open Source License (<a href="http://www.in-portal.net/license" target="_blank">http://www.in-portal.net/license</a>)</label>
</td>
</tr>
\ No newline at end of file

Event Timeline