Searched refs:lastrev (Results 1 – 3 of 3) sorted by relevance
/plugin/struct/meta/ |
H A D | PageMeta.php | 13 protected $lastrev; variable in dokuwiki\\plugin\\struct\\meta\\PageMeta 41 $sql = "SELECT pid, title, lasteditor, lastrev, lastsummary FROM titles WHERE pid = ?"; 51 $sql = "REPLACE INTO titles (pid, title, lasteditor, lastrev, lastsummary) VALUES (?,?,?,?,?)"; 52 $this->sqlite->query($sql, [$this->pid, $this->title, $this->lasteditor, $this->lastrev, $this->lastsummary]); 89 * @param int|null $lastrev 91 public function setLastRevision($lastrev) argument 93 if ($lastrev === null) { 94 $lastrev = 0; 97 $this->lastrev = $lastrev; [all...] |
/plugin/dokutranslate/ |
H A D | action.php | 64 function updateMeta($id, $parid, $lastrev, $revert = -1) { argument 71 $meta[$lastrev][$i]['changed'] = $meta['current'][$i]['changed']; 75 $meta[$lastrev][$i] = $meta['current'][$i]; 76 $meta['current'][$i]['changed'] = $lastrev; 265 $lastrev = getRevisions($ID, 0, 1, 1024); 266 updateMeta($ID, getParID(), $lastrev[0]); 291 $lastrev = getRevisions($ID, 0, 1, 1024); 292 updateMeta($ID, getParID(), $lastrev[0], $revert);
|
/plugin/struct/db/ |
H A D | update0013.sql | 2 ALTER TABLE titles ADD COLUMN lastrev NOT NULL DEFAULT '';
|