projects
/
WP-Plugins
/
glm-member-db-packaging.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
07456b2
)
Take care of undefined error
author
Steve Sutton
<steve@gaslightmedia.com>
Fri, 16 Sep 2016 15:38:24 +0000
(11:38 -0400)
committer
Steve Sutton
<steve@gaslightmedia.com>
Fri, 16 Sep 2016 15:38:24 +0000
(11:38 -0400)
Remove the dot from equals so no complaint about undefined $content.
setup/adminHooks.php
patch
|
blob
|
history
diff --git
a/setup/adminHooks.php
b/setup/adminHooks.php
index
07676cb
..
53b04f7
100644
(file)
--- a/
setup/adminHooks.php
+++ b/
setup/adminHooks.php
@@
-48,7
+48,7
@@
add_filter('glm-member-db-admin-management-hooksHelp', function($content) {
add_filter(
'glm-member-db-dashboard-member-widgets',
function ( $member = null ) {
- $content
.
= $this->controller( 'dashboard', 'packaging', $member );
+ $content = $this->controller( 'dashboard', 'packaging', $member );
return $content;
},
11,