Skip to content
Snippets Groups Projects
Commit 5981eb09 authored by Tom N Harris's avatar Tom N Harris
Browse files

Fix variable name type in indexer

parent 175193d2
No related branches found
No related tags found
No related merge requests found
......@@ -120,8 +120,8 @@ class Doku_Indexer {
return "locked";
// load known documents
$page_idx = $this->_addIndexKey('page', '', $page);
if ($page_idx === false) {
$pid = $this->_addIndexKey('page', '', $page);
if ($pid === false) {
$this->_unlock();
return false;
}
......@@ -348,8 +348,8 @@ class Doku_Indexer {
return "locked";
// load known documents
$page_idx = $this->_getIndexKey('page', '', $page);
if ($page_idx === false) {
$pid = $this->_getIndexKey('page', '', $page);
if ($pid === false) {
$this->_unlock();
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment