1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-04-27 17:03:15 +03:00

adding a comma that was preventing a syntax problem

This commit is contained in:
Tom McFarlin 2014-07-07 16:56:54 -04:00
parent a3cce1d965
commit 3ae56a6460

View file

@ -79,7 +79,7 @@ class Plugin_Name_Loader {
* @var type Optional $var Description.
*/
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 );
}
/**