Skip to content

Commit

Permalink
Merge pull request #3 from mr-fan/master
Browse files Browse the repository at this point in the history
Update BatchChildEditor.module
  • Loading branch information
adrianbj committed May 11, 2015
2 parents f6df540 + 98de967 commit 6534829
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions BatchChildEditor.module
Expand Up @@ -1370,7 +1370,7 @@ function buildCoreSettings ($data, $wrapper, $pid = null) {
$f->label = __('Update mode notes');
$f->showIf = "editModes=update";
$f->columnWidth = 33;
$f->description = __('Custom text for notes in Add mode.');
$f->description = __('Custom text for notes in Update mode.');
$f->value = $pid && isset($data['pageSettings'][$pid]) ? $data['pageSettings'][$pid]['updateModeNotes'] : $data['updateModeNotes'];
$fieldset->add($f);

Expand All @@ -1397,7 +1397,7 @@ function buildCoreSettings ($data, $wrapper, $pid = null) {
$f->label = __('Replace mode notes');
$f->showIf = "editModes=replace";
$f->columnWidth = 33;
$f->description = __('Custom text for notes in Add mode.');
$f->description = __('Custom text for notes in Replace mode.');
$f->value = $pid && isset($data['pageSettings'][$pid]) ? $data['pageSettings'][$pid]['replaceModeNotes'] : $data['replaceModeNotes'];
$fieldset->add($f);
}
}

0 comments on commit 6534829

Please sign in to comment.