Reproducable as follows:
fresh install of Drupal 6.10
create a page and note it's URL - ie node/1
set site of offline and logout
goto domain.com/node/1 - should get offline message
goto domain.com/ - should get same offline message

login, enable Meta Tags module, and logout again
goto domain.com/node/1 - will get $content part of offline message but with no styling, no title
goto domain.com/ - get proper offline message with styling

Hope this helps someone track down a bug...
Peter

Comments

peter.walter’s picture

Have tracked the problem down to the line

            $content = drupal_render($node->content);

in metatags/description.inc which corrupts the page when set of offline, and user logged out

As a hack, replacing this line with

            $content = $node->content['body']['#value'];

seems to do the trick

Peter

avpaderno’s picture

Category: bug » support
Status: Active » Fixed

Replacing drupal_render() with $node->content['body']['#value'] does not work when the body of the node needs to be changed by an input filter.

I think rather impossible that the module is causing conflicts with the offline message.

avpaderno’s picture

Title: module causes problems with site offline message » Module causes problems with the site offline message

Status: Fixed » Closed (fixed)

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