updated plugin ActivityPub version 9.1.0

This commit is contained in:
2026-07-28 15:03:10 +00:00
committed by Gitium
parent bf428f0e45
commit ff806e1811
217 changed files with 6098 additions and 3025 deletions

View File

@ -55,7 +55,7 @@ class Statistics {
* @return string The option name.
*/
public static function get_monthly_option_name( $user_id, $year, $month ) {
return sprintf( '%s%d_%d_%02d', self::OPTION_PREFIX, $user_id, $year, $month );
return \sprintf( '%s%d_%d_%02d', self::OPTION_PREFIX, $user_id, $year, $month );
}
/**
@ -67,7 +67,7 @@ class Statistics {
* @return string The option name.
*/
public static function get_annual_option_name( $user_id, $year ) {
return sprintf( '%s%d_%d_annual', self::OPTION_PREFIX, $user_id, $year );
return \sprintf( '%s%d_%d_annual', self::OPTION_PREFIX, $user_id, $year );
}
/**