From: Aaron Schulz Date: Sun, 15 May 2011 06:32:26 +0000 (+0000) Subject: Marked some _Newtalk functions protected X-Git-Tag: 1.31.0-rc.0~30175 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_supprimer.php?a=commitdiff_plain;h=ca25c69e6163267d88c4c5b45b054f325abf08c3;p=lhc%2Fweb%2Fwiklou.git Marked some _Newtalk functions protected --- diff --git a/includes/User.php b/includes/User.php index 3ba7a953ff..0a7915057b 100644 --- a/includes/User.php +++ b/includes/User.php @@ -1653,9 +1653,8 @@ class User { * @param $id String|Int User's IP address for anonymous users, User ID otherwise * @param $fromMaster Bool true to fetch from the master, false for a slave * @return Bool True if the user has new messages - * @private */ - function checkNewtalk( $field, $id, $fromMaster = false ) { + protected function checkNewtalk( $field, $id, $fromMaster = false ) { if ( $fromMaster ) { $db = wfGetDB( DB_MASTER ); } else { @@ -1671,9 +1670,8 @@ class User { * @param $field String 'user_ip' for anonymous users, 'user_id' otherwise * @param $id String|Int User's IP address for anonymous users, User ID otherwise * @return Bool True if successful, false otherwise - * @private */ - function updateNewtalk( $field, $id ) { + protected function updateNewtalk( $field, $id ) { $dbw = wfGetDB( DB_MASTER ); $dbw->insert( 'user_newtalk', array( $field => $id ), @@ -1693,9 +1691,8 @@ class User { * @param $field String 'user_ip' for anonymous users, 'user_id' otherwise * @param $id String|Int User's IP address for anonymous users, User ID otherwise * @return Bool True if successful, false otherwise - * @private */ - function deleteNewtalk( $field, $id ) { + protected function deleteNewtalk( $field, $id ) { $dbw = wfGetDB( DB_MASTER ); $dbw->delete( 'user_newtalk', array( $field => $id ),