Skip to content

Commit

Permalink
Fix method visibility (Bug #13780).
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Jan 6, 2015
1 parent 9923572 commit d20f185
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
18 changes: 9 additions & 9 deletions horde/bin/horde-import-squirrelmail-prefs
Expand Up @@ -86,7 +86,7 @@ class SM_Horde_Convert
* False if there is no horde pref equivalent, or the horde
* default should be used.
*/
private function _translate($sm_pref_name, $sm_pref_value)
protected function _translate($sm_pref_name, $sm_pref_value)
{
switch ($sm_pref_name) {
case 'compose_new_win':
Expand Down Expand Up @@ -213,7 +213,7 @@ class SM_Horde_Convert

/**
*/
private function _savePrefs($user, $basename, $prefs_cache)
protected function _savePrefs($user, $basename, $prefs_cache)
{
global $prefs, $registry;

Expand Down Expand Up @@ -270,7 +270,7 @@ class SM_Horde_Convert

/**
*/
private function _getSignature()
protected function _getSignature()
{
return '';
}
Expand All @@ -280,7 +280,7 @@ class SM_Horde_Convert

class SM_Horde_Convert_File extends SM_Horde_Convert
{
private $_files;
protected $_files;

/**
*/
Expand Down Expand Up @@ -351,7 +351,7 @@ class SM_Horde_Convert_File extends SM_Horde_Convert

/**
*/
private function _getSignature($basename, $number = 'g')
protected function _getSignature($basename, $number = 'g')
{
$sigfile = $basename . '.si' . $number;

Expand All @@ -365,8 +365,8 @@ class SM_Horde_Convert_File extends SM_Horde_Convert

class SM_Horde_Convert_Sql extends SM_Horde_Convert
{
private $_cache;
private $_db;
protected $_cache;
protected $_db;

/**
*/
Expand Down Expand Up @@ -403,7 +403,7 @@ class SM_Horde_Convert_Sql extends SM_Horde_Convert

/**
*/
private function _importPrefs($user, $prefs_cache)
protected function _importPrefs($user, $prefs_cache)
{
global $cli, $conf, $injector, $registry;

Expand All @@ -421,7 +421,7 @@ class SM_Horde_Convert_Sql extends SM_Horde_Convert

/**
*/
private function _getSignature($basename, $number = 'nature')
protected function _getSignature($basename, $number = 'nature')
{
$key = '___sig' . $number . '___';

Expand Down
1 change: 1 addition & 0 deletions horde/docs/CHANGES
Expand Up @@ -2,6 +2,7 @@
v5.2.4-git
----------

[jan] Fix horde-import-squirrelmail-prefs script (Bug #13780).
[jan] Don't instantiate notification system for RPC requests.


Expand Down
2 changes: 2 additions & 0 deletions horde/package.xml
Expand Up @@ -39,6 +39,7 @@
</stability>
<license uri="http://www.horde.org/licenses/lgpl">LGPL-2</license>
<notes>
* [jan] Fix horde-import-squirrelmail-prefs script (Bug #13780).
* [jan] Don&apos;t instantiate notification system for RPC requests.
</notes>
<contents>
Expand Down Expand Up @@ -3999,6 +4000,7 @@
<date>2014-12-03</date>
<license uri="http://www.horde.org/licenses/lgpl">LGPL-2</license>
<notes>
* [jan] Fix horde-import-squirrelmail-prefs script (Bug #13780).
* [jan] Don&apos;t instantiate notification system for RPC requests.
</notes>
</release>
Expand Down

0 comments on commit d20f185

Please sign in to comment.