From 6e6e094b62448306ef4c3affb514723c07b8ddc3 Mon Sep 17 00:00:00 2001 From: Will Budicm Date: Sat, 2 Jan 2021 18:28:57 +1100 Subject: [PATCH] upd. --- Current Development Check List.md | 14 +++++++------- htdocs/cgi-bin/login_ctr.cgi | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Current Development Check List.md b/Current Development Check List.md index 96b3236..5fea74c 100644 --- a/Current Development Check List.md +++ b/Current Development Check List.md @@ -6,7 +6,9 @@ ### v.2.2 EARTH RC 1 -* ✔ Bug 34 - DB fix in config, removes associated RTF documents to logs, for some reason. +* Search keep in session should preserve and always set options as selection till it is ticked. + * Reset Whole View to page view, should still set the search option till it is ticked. + * Unticking Keep in Session should be honored on next browsing. * Page section plugins. * Configured in main.cnf. * Accessed via side menu to appear. @@ -14,14 +16,12 @@ * Plugin behavior is to be invoked in real time on demand, utilizing in most complex scenario JSON as medium. * i.e. News or service feed, special view, file interaction. * Deleting multiple items, RTF, should mark for vacuum on next logout. -* Search keep in session should preserve and always set options as selection till it is ticked. - * Reset Whole View to page view, should still set the search option till it is ticked. - * Unticking Keep in Session should be honored on next browsing. * Order by Categories added to search/view. -* ✔ Page categories exclusion option in main.cnf. Log view server side is modified not to include excluded categories -older by certain amount of days, default is 0, for from today older. * Search on multiple words should rank by encounter of words specified and display first. (That one is difficult) * Auto collapse/expand on multi line logs by 0-none as default. Setting to 1 or more shows only that number of lines. (That one is difficult) +* ✔ Bug 34 - DB fix in config, removes associated RTF documents to logs, for some reason. +* ✔ Page categories exclusion option in main.cnf. Log view server side is modified not to include excluded categories +older by certain amount of days, default is 0, for from today older. ### v.2.1 SUN STABLE New Features in Works @@ -227,4 +227,4 @@ between 2018-08-22 04:13:55 **Moon Stable** production release and this An open source application. -
Life Log - Sun Stable Stage v.2.0 (2020)
+
Life Log - Sun Stable Stage v.2.1 (2020)
diff --git a/htdocs/cgi-bin/login_ctr.cgi b/htdocs/cgi-bin/login_ctr.cgi index c92715e..0994066 100755 --- a/htdocs/cgi-bin/login_ctr.cgi +++ b/htdocs/cgi-bin/login_ctr.cgi @@ -297,7 +297,7 @@ try{ if($hasLogTbl && !Settings::isProgressDB()){ $pst = Settings::selectRecords($db, "SELECT * from pragma_table_info('LOG') where name like 'ID_RTF';"); my @row = $pst = $pst->fetchrow_array(); - if(scalar (@row)>0){ + if(scalar (@row)>0 &&$row[0]!=0){ $db->do("ALTER TABLE LOG RENAME COLUMN ID_RTF TO RTF;"); } } -- 2.34.1