We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 984c856 commit b0b5251Copy full SHA for b0b5251
libraries/Document.php
@@ -254,7 +254,14 @@ public function refresh() {
254
$row = $stmt->fetch(PDO::FETCH_OBJ);
255
$stmt->closeCursor();
256
self::normalize($row);
257
- $this->label = $row->label;
+ $this->content = $row->content;
258
+ $this->created_datetime = $row->created_datetime;
259
+ $this->edited_count = $row->edited_count;
260
+ $this->edited_datetime = $row->edited_datetime;
261
+ $this->id = $row->id;
262
+ $this->options_bitmask = $row->options_bitmask;
263
+ $this->title = $row->title;
264
+ $this->user_id = $row->user_id;
265
Common::$cache->set($cache_key, serialize($row), 300);
266
return true;
267
} catch (PDOException $e) {
0 commit comments