The openlayers_ui module is causing blank advanced help to appear on EVERY page.

This is caused by openlayers_ui_help() returning a string even no path match occurred.

Error [line 98]:

return '<p>' . $output . '</p>';

---

Fix:

if (isset($output)) {
    return '<p>' . $output . '</p>'; 
}

Comments

dankobiaka’s picture

Issue summary: View changes
dankobiaka’s picture

Issue summary: View changes
Pol’s picture

Status: Active » Fixed

Thanks, fixed.

  • Pol committed 3a299f5 on 7.x-3.x
    Issue #2453817 by dankobiaka: openlayers_ui_help() returns empty <p>...

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.