Hello,
I have noticed a problem with bookmark registration in backend :
this ticket relates the problem (
http://www.steercms-project.org/trac/steercms/ticket/24
).
I'm running symfony 1.0.17 and i haven't tested on older releases, but
I successfully corrected the problem
by replacing this code in apps/backend/templates/_bookmarks.php :
[code]
'url' => 'steerCMSBookmark/new?
location='.urlencode($_SERVER['REQUEST_URI'])
[/code]
with
[code]
'url' => 'steerCMSBookmark/new',
'with' => array(
'location' => urlencode($_SERVER['REQUEST_URI'])
),
[/code]
Hope it helps.
Florian.