From geeklog-cvs at lists.geeklog.net Thu Sep 3 14:32:35 2009 From: geeklog-cvs at lists.geeklog.net (geeklog-cvs at lists.geeklog.net) Date: Thu, 03 Sep 2009 14:32:35 -0400 Subject: [geeklog-cvs] geeklog: The "Remember Me For" option under My Account did not r... Message-ID: details: http://project.geeklog.net/cgi-bin/hgweb.cgi/rev/4517558ab25c changeset: 7276:4517558ab25c user: Dirk Haun date: Thu Sep 03 20:32:24 2009 +0200 description: The "Remember Me For" option under My Account did not recognize the "(don't)" option any more (bug #0000961) diffstat: public_html/docs/history | 2 ++ public_html/usersettings.php | 10 +++++----- 2 files changed, 7 insertions(+), 5 deletions(-) diffs (36 lines): diff -r fecf9cc82e81 -r 4517558ab25c public_html/docs/history --- a/public_html/docs/history Mon Aug 31 20:15:48 2009 +0200 +++ b/public_html/docs/history Thu Sep 03 20:32:24 2009 +0200 @@ -3,6 +3,8 @@ Oct ??, 2009 (1.6.1) ------------ +- The "Remember Me For" option under My Account did not recognize the "(don't)" + option any more (bug #0000961) [Dirk] - Send a notification when a comment goes into the submission queue [Dirk] - Added a link back to the story to the "Mail Story to a Friend" form [Dirk] - Only list [code], [raw] tags when story.* permissions are required [Dirk] diff -r fecf9cc82e81 -r 4517558ab25c public_html/usersettings.php --- a/public_html/usersettings.php Mon Aug 31 20:15:48 2009 +0200 +++ b/public_html/usersettings.php Thu Sep 03 20:32:24 2009 +0200 @@ -878,15 +878,15 @@ return COM_refresh ($_CONF['site_url'] . '/index.php'); } - // If not set or possibly removed from template - initialize variable - if (!isset($A['cooktime'])) { - $A['cooktime'] = 0; + if (! isset($A['cooktime'])) { + // If not set or possibly removed from template - set to default + $A['cooktime'] = $_CONF['default_perm_cookie_timeout']; } else { - $A['cooktime'] = COM_applyFilter ($A['cooktime'], true); + $A['cooktime'] = COM_applyFilter($A['cooktime'], true); } // If empty or invalid - set to user default // So code after this does not fail the user password required test - if (empty($A['cooktime']) OR $A['cooktime'] < 0) { + if ($A['cooktime'] < 0) { // note that == 0 is allowed! $A['cooktime'] = $_USER['cookietimeout']; } From geeklog-cvs at lists.geeklog.net Sat Sep 5 13:01:48 2009 From: geeklog-cvs at lists.geeklog.net (geeklog-cvs at lists.geeklog.net) Date: Sat, 05 Sep 2009 13:01:48 -0400 Subject: [geeklog-cvs] geeklog: Cosmetics: Fixed position of the story preview box in a... Message-ID: details: http://project.geeklog.net/cgi-bin/hgweb.cgi/rev/3bea8d29e64c changeset: 7279:3bea8d29e64c user: Dirk Haun date: Sat Sep 05 19:01:38 2009 +0200 description: Cosmetics: Fixed position of the story preview box in advanced editor (bug #0000963) diffstat: public_html/docs/english/theme.html | 4 ++++ public_html/layout/professional/admin/story/storyeditor_advanced.thtml | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diffs (30 lines): diff -r a3f1efd9d39d -r 3bea8d29e64c public_html/docs/english/theme.html --- a/public_html/docs/english/theme.html Sat Sep 05 18:45:52 2009 +0200 +++ b/public_html/docs/english/theme.html Sat Sep 05 19:01:38 2009 +0200 @@ -198,6 +198,10 @@

Theme changes in Geeklog 1.6.1

    +
  • Cosmetics: Fixed the position of the story preview when using the + advanced editor (was slightly shifted to the right, bug #0000963). Changes to the <div id="preview"> in + admin/story/storyeditor_advanced.thtml.
  • Cosmetics: Removed font-size:larger; for the header fields of the admin lists from the stylesheet, but added some top/bottom padding (bug #0000956).
  • diff -r a3f1efd9d39d -r 3bea8d29e64c public_html/layout/professional/admin/story/storyeditor_advanced.thtml --- a/public_html/layout/professional/admin/story/storyeditor_advanced.thtml Sat Sep 05 18:45:52 2009 +0200 +++ b/public_html/layout/professional/admin/story/storyeditor_advanced.thtml Sat Sep 05 19:01:38 2009 +0200 @@ -259,8 +259,10 @@ -
    - {preview_content} +
    +
    + {preview_content} +