From: Christian Weiske Date: Thu, 2 Oct 2014 06:58:34 +0000 (+0200) Subject: Fix bug #8: Titled blank notes cause SQL error X-Git-Tag: v0.3.0~17 X-Git-Url: https://git.cweiske.de/grauphel.git/commitdiff_plain/600e904f35d598a64be0139d39b87a59ed5eaa12?hp=eb5c81dea5a60bc65d3ec607daf5ad81fd709928 Fix bug #8: Titled blank notes cause SQL error --- diff --git a/lib/notestorage.php b/lib/notestorage.php index 7449417..c665903 100644 --- a/lib/notestorage.php +++ b/lib/notestorage.php @@ -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),