From: <var...@us...> - 2013-06-18 13:42:46
|
Revision: 8816 http://sourceforge.net/p/phpwiki/code/8816 Author: vargenau Date: 2013-06-18 13:42:44 +0000 (Tue, 18 Jun 2013) Log Message: ----------- private --> protected Modified Paths: -------------- trunk/lib/plugin/DebugBackendInfo.php trunk/lib/plugin/EditMetaData.php Modified: trunk/lib/plugin/DebugBackendInfo.php =================================================================== --- trunk/lib/plugin/DebugBackendInfo.php 2013-06-18 13:39:29 UTC (rev 8815) +++ trunk/lib/plugin/DebugBackendInfo.php 2013-06-18 13:42:44 UTC (rev 8816) @@ -103,7 +103,7 @@ * 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 @@ } /* 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 @@ } /* also used in plugin/EditMetaData */ - private function _showvalue($key, $val, $prefix = '') + protected function _showvalue($key, $val, $prefix = '') { return $val ? $val : HTML::raw(' '); } Modified: trunk/lib/plugin/EditMetaData.php =================================================================== --- trunk/lib/plugin/EditMetaData.php 2013-06-18 13:39:29 UTC (rev 8815) +++ trunk/lib/plugin/EditMetaData.php 2013-06-18 13:42:44 UTC (rev 8816) @@ -158,7 +158,7 @@ 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 ''; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |