Skip to content

Commit

Permalink
Fix issue #1545 typo in Notification.php
Browse files Browse the repository at this point in the history
  • Loading branch information
ryancramerdesign committed Dec 7, 2015
1 parent d38e93f commit a5dec1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wire/modules/System/SystemNotifications/Notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public function __construct() {
public function title($value) { return $this->set('title', $value); }
public function text($value) { return $this->set('text', $value); }
public function html($value) { return $this->set('html', $value); }
public function from($value) { return $this->set('html', $value); }
public function from($value) { return $this->set('from', $value); }
public function icon($value) { return $this->set('icon', $value); }
public function href($value) { return $this->set('href', $value); }
public function progress($value) { return $this->set('progress', $value); }
Expand Down

0 comments on commit a5dec1a

Please sign in to comment.