Fix bug #8: Titled blank notes cause SQL error
authorChristian Weiske <christian.weiske@netresearch.de>
Thu, 2 Oct 2014 06:58:34 +0000 (08:58 +0200)
committerChristian Weiske <christian.weiske@netresearch.de>
Thu, 2 Oct 2014 06:58:34 +0000 (08:58 +0200)
lib/notestorage.php

index 74494176d7856626198291bf314776c3c419fef3..c6659034e8da7d337bca551b43cf32cf126dcac6 100644 (file)
@@ -225,7 +225,7 @@ class NoteStorage
                 'tags'            => array(),
             );
         }
-        
+
         return $this->noteFromRow($row);
     }
 
@@ -398,15 +398,15 @@ class NoteStorage
     {
         return array(
             'note_guid'  => $note->guid,
-            'note_title' => $note->title,
+            'note_title' => (string) $note->title,
 
-            'note_content'         => $note->{'note-content'},
-            'note_content_version' => $note->{'note-content-version'},
+            'note_content'         => (string) $note->{'note-content'},
+            'note_content_version' => (string) $note->{'note-content-version'},
 
             'note_create_date'               => $note->{'create-date'},
             'note_last_change_date'          => $note->{'last-change-date'},
             'note_last_metadata_change_date' => $note->{'last-metadata-change-date'},
-            
+
             'note_open_on_startup' => (int) $note->{'open-on-startup'},
             'note_pinned'          => (int) $note->pinned,
             'note_tags'            => json_encode($note->tags),