This snippet works great for 4.7.x

$q = $_GET['q'];
$_GET['q'] = drupal_get_normal_path('television/concepts');
print menu_execute_active_handler();
$_GET['q'] = $q;

but is not compatible for 5.0.x

Any phpsnippet to include a page into a page/node in 5.x.

Thanks!

John

Comments

JohnNoc-old’s picture

Update.......It's actually working on some pages....but including pages like search/node results to:

Fatal error: Unsupported operand types in /home/example/public_html/drupal/includes/form.inc on line 324

John