aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChristian Weiske <christian.weiske@netresearch.de>2014-10-02 08:58:34 +0200
committerChristian Weiske <christian.weiske@netresearch.de>2014-10-02 08:58:34 +0200
commit600e904f35d598a64be0139d39b87a59ed5eaa12 (patch)
treefa31a218ca92a7c8e3519cb33dcbbab59e9e5528 /lib
parenteb5c81dea5a60bc65d3ec607daf5ad81fd709928 (diff)
downloadgrauphel-600e904f35d598a64be0139d39b87a59ed5eaa12.tar.gz
grauphel-600e904f35d598a64be0139d39b87a59ed5eaa12.zip
Fix bug #8: Titled blank notes cause SQL error
Diffstat (limited to 'lib')
-rw-r--r--lib/notestorage.php10
1 files changed, 5 insertions, 5 deletions
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),