Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sccpManClasses/formcreate.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function addElementIE ($child, $fvalues, $sccp_defaults, $npref) {
</div>
<?php
if (!empty($sccp_defaults[$shortId]['systemdefault'])) {
// There is a system default, so add button to customise or reset
// There is a system default, so add button to customize or reset
//-- Start include of defaults button --
echo "<div class=col-md-3>";
}
Expand Down Expand Up @@ -101,7 +101,7 @@ function addElementIE ($child, $fvalues, $sccp_defaults, $npref) {
<label
<?php
echo "for=usedefault_{$res_id} >";
echo ($usingSysDefaults) ? "Customise" : "Use {$this->buttonDefLabel} defaults";
echo ($usingSysDefaults) ? "Customize" : "Use {$this->buttonDefLabel} defaults";
?>
</label>

Expand Down Expand Up @@ -385,7 +385,7 @@ function addElementIS($child, $fvalues, $sccp_defaults,$npref, $disabledButtons)
$usingSysDefaults = false;
}
if (!empty($sccp_defaults[$res_n]['systemdefault'])) {
// There is a system default, so add button to customise or reset
// There is a system default, so add button to customize or reset
// the closing } is after the code to include the button at line ~438

//-- Start include of defaults button --
Expand All @@ -411,7 +411,7 @@ function addElementIS($child, $fvalues, $sccp_defaults,$npref, $disabledButtons)
<label
<?php
echo "for=usedefault_{$res_id} >";
echo ($usingSysDefaults) ? "Customise" : "Use {$this->buttonDefLabel} defaults";
echo ($usingSysDefaults) ? "Customize" : "Use {$this->buttonDefLabel} defaults";
?>
</label>
</span>
Expand Down