Skip to content

Commit

Permalink
Fixed deprecation warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
nerun committed Aug 17, 2023
1 parent 1c08297 commit 637cb4d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

2023-08-17 v0.7.1
* Fixed deprecation warning.

2023-06-17 v0.7
* Included Dutch translation (by G. Uitslag).
* Some modifications to facilitate the translation by DokuWiki Translation Tool.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ Plugin for [DokuWiki](https://www.dokuwiki.org), available at [plugin: templater
Author : Jonathan Arkell
Maintainer : Daniel Dias Rodrigues
Current Version : 0.7 (2023-06-17)
Current Version : 0.7.1 (2023-08-17)

Want to translate this plugin to your language? Go to [DokuWiki Localization](https://translate.dokuwiki.org/plugin/templater).
2 changes: 1 addition & 1 deletion plugin.info.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
base templater
author Daniel Dias Rodrigues
email danieldiasr@gmail.com
date 2023-06-17
date 2023-08-17
name Templater Plugin
desc Displays a wiki page (or a section thereof) within another, with user selectable replacements.
url https://www.dokuwiki.org/plugin:templater
5 changes: 2 additions & 3 deletions syntax.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,14 @@
* Ximin Luo <xl269@cam.ac.uk>
* jack126guy <halfgray7e@gmail.com>
* Turq Whiteside <turq@mage.city>
* @version 0.7 (2023-06-17)
* @version 0.7.1 (2023-08-17)
*/

define('BEGIN_REPLACE_DELIMITER', '@');
define('END_REPLACE_DELIMITER', '@');

if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/');
if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once(DOKU_PLUGIN.'syntax.php');
require_once('debug.php');

/**
Expand All @@ -45,7 +44,7 @@ function getInfo() {
return array(
'author' => 'Daniel Dias Rodrigues',
'email' => 'danieldiasr@gmail.com',
'date' => '2023-06-17',
'date' => '2023-08-17',
'name' => 'Templater Plugin',
'desc' => 'Displays a wiki page (or a section thereof) within another, with user selectable replacements',
'url' => 'http://www.dokuwiki.org/plugin:templater',
Expand Down

0 comments on commit 637cb4d

Please sign in to comment.