Skip to content

Commit

Permalink
Fix note message
Browse files Browse the repository at this point in the history
  • Loading branch information
slawkens committed Jan 14, 2025
1 parent b5b2e3f commit b02c7f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function warning($message, $return = false) {
return message($message, 'warning', $return);
}
function note($message, $return = false) {
return info($message, $return);
return message($message, 'note', $return);
}
function info($message, $return = false) {
return message($message, 'info', $return);
Expand Down

0 comments on commit b02c7f4

Please sign in to comment.