backdrop-contrib / og

The Organic Groups module provides users the ability to create, manage, and delete 'groups' on a site.
GNU General Public License v2.0
1 stars 8 forks source link

1.x 2.x issue 140 #143

Closed argiepiano closed 1 year ago

laryn commented 1 year ago

@argiepiano

Should this:

if (strpos(!$item || $item['path'], 'node/add/') !== 0) {

be this?

if (!$item || strpos($item['path'], 'node/add/') !== 0) {

argiepiano commented 1 year ago

Oops!!! Yes. Thanks for catching that. I'll fix soon

argiepiano commented 1 year ago

Fixed!

laryn commented 1 year ago

LGTM