X-Git-Url: https://git.cweiske.de/grauphel.git/blobdiff_plain/9150b1d1f25a5f278ed44e4d3afe32de5ef8ccc3..849cf18b89186163bc3695c5a0eb2908471b95b3:/lib/notestorage.php?ds=sidebyside diff --git a/lib/notestorage.php b/lib/notestorage.php index 121f5cb..77c8fc6 100644 --- a/lib/notestorage.php +++ b/lib/notestorage.php @@ -262,8 +262,8 @@ class NoteStorage \OC_DB::executeAudited( 'DELETE FROM `*PREFIX*grauphel_notes`' . ' WHERE `note_user` = ? AND `note_guid` = ?', - array($username, $guid) - ); + array($username, $guid) + ); } /** @@ -277,15 +277,15 @@ class NoteStorage */ public function loadNotesOverview($username, $since = null) { - $result = \OC_DB::executeAudited( + $result = \OC_DB::executeAudited( 'SELECT `note_guid`, `note_title`, `note_last_sync_revision`' . ' FROM `*PREFIX*grauphel_notes`' . ' WHERE note_user = ?', - array($username) - ); + array($username) + ); - $notes = array(); - while ($row = $result->fetchRow()) { + $notes = array(); + while ($row = $result->fetchRow()) { if ($since !== null && $row['note_last_sync_revision'] <= $since) { continue; } @@ -305,7 +305,7 @@ class NoteStorage ), 'title' => $row['note_title'], ); - } + } return $notes; } @@ -321,19 +321,19 @@ class NoteStorage */ public function loadNotesFull($username, $since = null) { - $result = \OC_DB::executeAudited( + $result = \OC_DB::executeAudited( 'SELECT * FROM `*PREFIX*grauphel_notes`' . ' WHERE note_user = ?', - array($username) - ); + array($username) + ); - $notes = array(); - while ($row = $result->fetchRow()) { + $notes = array(); + while ($row = $result->fetchRow()) { if ($since !== null && $row['note_last_sync_revision'] <= $since) { continue; } $notes[] = $this->noteFromRow($row); - } + } return $notes; }