Skip to content

Commit

Permalink
Update mvc_form_helper.php
Browse files Browse the repository at this point in the history
Fixed spelling mistake in comment.
  • Loading branch information
gkweb committed May 10, 2016
1 parent 679c8a0 commit fa1719e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/helpers/mvc_form_helper.php
Expand Up @@ -33,7 +33,7 @@ public function create($model_name, $options=array()) {

public function end($label='Submit') {
$html = "";
// Allows the ommission of Submit button from end of form if $label == false. Useful for using custom submit buttons with more specific stylings etc..
// Allows the omission of Submit button from end of form if $label == false. Useful for using custom submit buttons with more specific stylings etc..
if ($label) {
$html = '<div><input type="submit" value="'.$this->esc_attr($label).'" /></div>';
}
Expand Down Expand Up @@ -342,4 +342,4 @@ private function get_type_from_sql_schema($schema) {

}

?>
?>

0 comments on commit fa1719e

Please sign in to comment.