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
Comment #1
peter.walter commentedHave tracked the problem down to the line
in metatags/description.inc which corrupts the page when set of offline, and user logged out
As a hack, replacing this line with
seems to do the trick
Peter
Comment #2
avpadernoReplacing
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.
Comment #3
avpaderno