Skip to content
Snippets Groups Projects
Commit bd28297e authored by Michael Hamann's avatar Michael Hamann
Browse files

Replace = & by =& as the former isn't understood by IntelliJ IDEA

parent e3ab6fc5
No related branches found
No related tags found
No related merge requests found
......@@ -62,11 +62,11 @@ class Doku_Parser {
var $connected = false;
function addBaseMode(& $BaseMode) {
$this->modes['base'] = & $BaseMode;
$this->modes['base'] =& $BaseMode;
if ( !$this->Lexer ) {
$this->Lexer = new Doku_Lexer($this->Handler,'base', true);
}
$this->modes['base']->Lexer = & $this->Lexer;
$this->modes['base']->Lexer =& $this->Lexer;
}
/**
......@@ -78,7 +78,7 @@ class Doku_Parser {
$this->addBaseMode(new Doku_Parser_Mode_base());
}
$Mode->Lexer = & $this->Lexer;
$this->modes[$name] = & $Mode;
$this->modes[$name] =& $Mode;
}
function connectModes() {
......
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