Skip to content

Commit

Permalink
Code inspection views
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Hunziker committed Nov 8, 2016
1 parent 4e71d0a commit e0bfa3a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion com_sermonspeaker/admin/views/help/view.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function display($tpl = null)
$this->addToolbar();
$this->sidebar = JHtmlSidebar::render();

parent::display($tpl);
return parent::display($tpl);
}

/**
Expand Down
3 changes: 2 additions & 1 deletion com_sermonspeaker/admin/views/sermon/view.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,8 @@ function pickerCallbackAddfile(data) {
}

$this->addToolbar();
parent::display($tpl);

return parent::display($tpl);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
</div>
<div class="modal-footer">
<button class="btn" type="button" data-dismiss="modal"
onclick="document.getElementById('batch-category-id').value='';document.getElementById('batch-language-id').value='';document.getElementById('batch-tag-id').value=''document.getElementById('batch-speaker-id').value='';document.getElementById('batch-serie-id').value=''">
onclick="document.getElementById('batch-category-id').value='';document.getElementById('batch-language-id').value='';document.getElementById('batch-tag-id').value='';document.getElementById('batch-speaker-id').value='';document.getElementById('batch-serie-id').value=''">
<?php echo JText::_('JCANCEL'); ?>
</button>
<button class="btn btn-primary" type="submit" onclick="Joomla.submitbutton('sermon.batch');">
Expand Down
2 changes: 1 addition & 1 deletion com_sermonspeaker/admin/views/tools/view.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function display($tpl = null)
$this->sidebar = JHtmlSidebar::render();
}

parent::display($tpl);
return parent::display($tpl);
}

/**
Expand Down

0 comments on commit e0bfa3a

Please sign in to comment.