summaryrefslogtreecommitdiff
path: root/inc/plugin.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2014-05-18 20:12:53 +0200
committerAndreas Gohr <andi@splitbrain.org>2014-05-18 20:12:53 +0200
commit60bf39dd81584414d4cb6f8cf568330d1a843a93 (patch)
tree7757ea89895043d56e570501773f9bad9ff1b342 /inc/plugin.php
parent2e0c0440007c357cac9fbd8bed1a8b5ac9cab2a6 (diff)
parent1419a485e3ac0c507ef073f0b816bd41f7e4a5cd (diff)
downloadrpg-60bf39dd81584414d4cb6f8cf568330d1a843a93.tar.gz
rpg-60bf39dd81584414d4cb6f8cf568330d1a843a93.tar.bz2
Merge pull request #693 from splitbrain/logdeprecated
log deprecated function calls FS#2399
Diffstat (limited to 'inc/plugin.php')
-rw-r--r--inc/plugin.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/plugin.php b/inc/plugin.php
index 7de4fbd74..e0112ef56 100644
--- a/inc/plugin.php
+++ b/inc/plugin.php
@@ -252,6 +252,7 @@ class DokuWiki_Plugin {
*/
function __call($name, $arguments) {
if($name == 'render'){
+ dbg_deprecated('render_text()');
if(!isset($arguments[1])) $arguments[1] = 'xhtml';
return $this->render_text($arguments[0], $arguments[1]);
}