Needs review
Project:
TinyBrowser
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Mar 2011 at 01:56 UTC
Updated:
7 Dec 2011 at 12:08 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
pixture commentedModify the tinybrowser.php (line #1153 or somewhere nearby) to change
From:
'#attributes' => array('class' => 'tinybrowser-weight'),
To:
'#attributes' => array('class' => array('tinybrowser-weight')),
Here's the extract of the function tinybrowser_role_form() where you need to modify.
I hope this will fix the issue.
Before (tinybrowser.php)
After
Comment #2
audster commentedThank you!
The function is not in tinybrowser.php though...
I found it in tinybrowser.module
made the change and
VOILA!
Comment #3
audster commentedregrading CLEAN URLs
In the doc it says this needs to be enabled and working.
you may have noticed that this is a real issue under D7 (the enable clean URLs checkbox not working and various configuration changes are not helping folks... I am one of them.. )
Clean URLS are not working on my site (and probably won't be until I can point the domain to the shared server when I'm done getting it up and running...) but tinybrowser seems to be handling it...
So errr, just what mayhem awaits me if Clean URLs isn't running/working?
Comment #4
Anonymous (not verified) commentedHere's a patch to fix the class array issue. The clean URLs issue should be opened separately.