forked from dokuwiki/dokuwiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -337,7 +337,7 @@ function buildAttributes($params, $skipempty = false) { | |
* | ||
* @author Andreas Gohr <[email protected]> | ||
* | ||
* @return string[string] with the data: array(pageid=>name, ... ) | ||
* @return string[] with the data: array(pageid=>name, ... ) | ||
*/ | ||
function breadcrumbs() { | ||
// we prepare the breadcrumbs early for quick session closing | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1248,7 +1248,7 @@ protected function indexLengths($filter) { | |
* @author Tom N Harris <[email protected]> | ||
* | ||
* @param string $line | ||
* @param string $id | ||
* @param string|int $id | ||
* @param int $count | ||
* @return string | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -616,12 +616,13 @@ function p_sort_modes($a, $b){ | |
* @author Andreas Gohr <[email protected]> | ||
* | ||
* @param string $mode | ||
* @param array $instructions | ||
* @param array|null|false $instructions | ||
* @param array $info returns render info like enabled toc and cache | ||
* @return null|string rendered output | ||
*/ | ||
function p_render($mode,$instructions,&$info){ | ||
if(is_null($instructions)) return ''; | ||
if($instructions === false) return ''; | ||
|
||
$Renderer = p_get_renderer($mode); | ||
if (is_null($Renderer)) return null; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters