projects
/
WP-Plugins
/
glm-member-db-events.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7db1def
)
Take care of undefined
author
Steve Sutton
<steve@gaslightmedia.com>
Fri, 16 Sep 2016 15:40:03 +0000
(11:40 -0400)
committer
Steve Sutton
<steve@gaslightmedia.com>
Fri, 16 Sep 2016 15:40:03 +0000
(11:40 -0400)
Remove the dot from assignment.
setup/adminHooks.php
patch
|
blob
|
history
diff --git
a/setup/adminHooks.php
b/setup/adminHooks.php
index
498f409
..
f91e570
100644
(file)
--- a/
setup/adminHooks.php
+++ b/
setup/adminHooks.php
@@
-28,7
+28,7
@@
add_filter(
'glm-member-db-dashboard-member-widgets',
function ( $member = null ) {
- $content
.
= $this->controller( 'dashboard', 'events', $member );
+ $content = $this->controller( 'dashboard', 'events', $member );
return $content;
},
11,