mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
adding a comma that was preventing a syntax problem
This commit is contained in:
parent
a3cce1d965
commit
3ae56a6460
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ class Plugin_Name_Loader {
|
||||||
* @var type Optional $var Description.
|
* @var type Optional $var Description.
|
||||||
*/
|
*/
|
||||||
public function add_filter( $hook, $component, $callback, $priority = 10 ) {
|
public function add_filter( $hook, $component, $callback, $priority = 10 ) {
|
||||||
$this->filters = $this->add( $this->filters, $hook, $component, $callback $priority );
|
$this->filters = $this->add( $this->filters, $hook, $component, $callback, $priority );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue