Error on Drupal 6rc2
* : Object of class stdClass could not be converted to string in /sites/all/themes/simplex2/page.tpl.php on line 3.

workaround

print $language " xml:lang=" print $language ">

change to :

print $language->language " lang=" print $language->language ">

Comments

dide’s picture

this remove the red box

<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">

change to:

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>">
dreed47’s picture

Status: Needs review » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

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