- added profile privacy setting for the avoiding profile indexation;

This commit is contained in:
nikitasinelnikov
2020-06-19 13:07:04 +03:00
parent a41cad52e1
commit 02fde13b39
7 changed files with 70 additions and 22 deletions
+1 -1
View File
@@ -2053,7 +2053,7 @@ function um_get_cover_uri( $image, $attrs ) {
function um_get_avatar_url( $get_avatar ) {
preg_match( '/src="(.*?)"/i', $get_avatar, $matches );
return $matches[1];
return isset( $matches[1] ) ? $matches[1] : '';
}