Home
last modified time | relevance | path

Searched refs:lastrev (Results 1 – 3 of 3) sorted by relevance

/plugin/struct/meta/
H A DPageMeta.php13 protected $lastrev; variable in dokuwiki\\plugin\\struct\\meta\\PageMeta
52 …$this->sqlite->query($sql, [$this->pid, $this->title, $this->lasteditor, $this->lastrev, $this->la…
89 * @param int|null $lastrev
91 public function setLastRevision($lastrev) argument
93 if ($lastrev === null) {
94 $lastrev = 0;
97 $this->lastrev = $lastrev;
/plugin/dokutranslate/
Daction.php64 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 Dupdate0013.sql2 ALTER TABLE titles ADD COLUMN lastrev NOT NULL DEFAULT '';