From da65bfb3aafc992b6665a9549932246cb9671133 Mon Sep 17 00:00:00 2001 From: vargenau Date: Tue, 18 Jun 2013 13:42:44 +0000 Subject: [PATCH] private --> protected git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@8816 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- lib/plugin/DebugBackendInfo.php | 6 +++--- lib/plugin/EditMetaData.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/plugin/DebugBackendInfo.php b/lib/plugin/DebugBackendInfo.php index f064b014e..1eccbddd7 100644 --- a/lib/plugin/DebugBackendInfo.php +++ b/lib/plugin/DebugBackendInfo.php @@ -103,7 +103,7 @@ class WikiPlugin_DebugBackendInfo * Really should have a _fixupPagedata and _fixupVersiondata, but this works. * also used in plugin/EditMetaData */ - private function _fixupData(&$data, $prefix = '') + protected function _fixupData(&$data, $prefix = '') { if (!is_array($data)) return; @@ -162,7 +162,7 @@ class WikiPlugin_DebugBackendInfo } /* also used in plugin/EditMetaData */ - private function _showhash($heading, $hash, $prefix = '') + protected function _showhash($heading, $hash, $prefix = '') { $rows = array(); if ($heading) @@ -189,7 +189,7 @@ class WikiPlugin_DebugBackendInfo } /* also used in plugin/EditMetaData */ - private function _showvalue($key, $val, $prefix = '') + protected function _showvalue($key, $val, $prefix = '') { return $val ? $val : HTML::raw(' '); } diff --git a/lib/plugin/EditMetaData.php b/lib/plugin/EditMetaData.php index ddcc80448..dd66952b1 100644 --- a/lib/plugin/EditMetaData.php +++ b/lib/plugin/EditMetaData.php @@ -158,7 +158,7 @@ class WikiPlugin_EditMetaData return $html; } - private function _showvalue($key, $val, $prefix = '') + protected function _showvalue($key, $val, $prefix = '') { if (is_array($val) or is_object($val)) return $val; if (in_array($key, $this->hidden_pagemeta)) return ''; -- 2.42.0