The what I would call "options" section of the edit pages (Publishing Options, URL path settings, etc...) displays nothing with the latest build. I'm getting this error:

Notice: Array to string conversion in include() (line 13 of /home/thenet/public_html/sites/all/themes/bootstrap/theme/bootstrap/bootstrap-panel.tpl.php).
Notice: Array to string conversion in include() (line 13 of /home/thenet/public_html/sites/all/themes/bootstrap/theme/bootstrap/bootstrap-panel.tpl.php).
Notice: Array to string conversion in include() (line 13 of /home/thenet/public_html/sites/all/themes/bootstrap/theme/bootstrap/bootstrap-panel.tpl.php).
Notice: Array to string conversion in include() (line 13 of /home/thenet/public_html/sites/all/themes/bootstrap/theme/bootstrap/bootstrap-panel.tpl.php).
Notice: Array to string conversion in include() (line 13 of /home/thenet/public_html/sites/all/themes/bootstrap/theme/bootstrap/bootstrap-panel.tpl.php).
Notice: Array to string conversion in include() (line 13 of /home/thenet/public_html/sites/all/themes/bootstrap/theme/bootstrap/bootstrap-panel.tpl.php).
Notice: Array to string conversion in include() (line 13 of /home/thenet/public_html/sites/all/themes/bootstrap/theme/bootstrap/bootstrap-panel.tpl.php).

Comments

TheNet_’s picture

deleted

TheNet_’s picture

Title: Error on Homepage with Newest Release » Options in edit pages display nothing!
Priority: Normal » Major
Issue summary: View changes
TheNet_’s picture

Anyone else having this problem?

markhalliwell’s picture

Title: Options in edit pages display nothing! » Array to string conversion in bootstrap-panel.tpl.php
Component: Miscellaneous » Code
Priority: Major » Normal
Status: Active » Postponed (maintainer needs more info)

It sounds like you have a module that is trying to set an element's attribute key as a string instead of an array. For example:
$element['attributes']['class'] = 'my class'

Instead of:
$element['attributes']['class'] = array('my class') or $element['attributes']['class'][] = 'my class'

I would suggest disabling some modules or do a regex search (something like /\['attributes'\]\['class'\] = '[^']*'/i) to find the culprit.

When you find the module responsible, please reassign this issue to that module.

markhalliwell’s picture

Status: Postponed (maintainer needs more info) » Closed (won't fix)

Scripted response: This issue has been closed while cleaning up the issue queue. This issue has had insufficient information, has not followed proper instructions or has likely already been addressed in 7.x-3.x-dev.