]> lifelog.hopto.org Git - LifeLog.git/commitdiff
upd.
authorWill Budicm <redacted>
Sat, 2 Jan 2021 07:28:57 +0000 (18:28 +1100)
committerWill Budicm <redacted>
Sat, 2 Jan 2021 07:28:57 +0000 (18:28 +1100)
Current Development Check List.md
htdocs/cgi-bin/login_ctr.cgi

index 96b3236c1cb8b5033561dd867a4e4cb784ce54ec..5fea74c2dadd989b1e1aaec6f65bb23a1cd7f8db 100644 (file)
@@ -6,7 +6,9 @@
 
 ### v.2.2 EARTH RC 1
 
-* &#10004; 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.
   * 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.
-* &#10004; 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)
+* &#10004; Bug 34 - DB fix in config, removes associated RTF documents to logs, for some reason.
+* &#10004; 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.
 
-<center>Life Log - Sun Stable Stage v.2.0 (2020)</center>
+<center>Life Log - Sun Stable Stage v.2.1 (2020)</center>
index c92715e9a4b2214437cbcae4f255b489592d8fe4..09940665f3a53b26fbbd3b5f5c77c72e9d1d0b60 100755 (executable)
@@ -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;");           
         }        
     }