fix copy&paste issue
thanks @mattwiebe
This commit is contained in:
parent
a1791b963c
commit
f8b93760df
2 changed files with 2 additions and 2 deletions
|
@ -38,6 +38,6 @@ class Application_User extends Blog_User {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_name() {
|
public function get_name() {
|
||||||
return \esc_html( \get_bloginfo( 'activitypub_application_identifier', 'application' ) );
|
return \esc_html( \get_option( 'activitypub_application_identifier', 'application' ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,7 +56,7 @@ class Blog_User extends User {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_username() {
|
public function get_username() {
|
||||||
return \esc_html( \get_bloginfo( 'activitypub_blog_identifier', 'feed' ) );
|
return \esc_html( \get_option( 'activitypub_blog_identifier', 'feed' ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_avatar() {
|
public function get_avatar() {
|
||||||
|
|
Loading…
Reference in a new issue