Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/thesacih/biosquest.com/site.php on line 107
Warning: Cannot modify header information - headers already sent by (output started at /home/thesacih/biosquest.com/site.php:1) in /home/thesacih/biosquest.com/site.php on line 234
Warning: Cannot modify header information - headers already sent by (output started at /home/thesacih/biosquest.com/site.php:1) in /home/thesacih/biosquest.com/site.php on line 235
Warning: Cannot modify header information - headers already sent by (output started at /home/thesacih/biosquest.com/site.php:1) in /home/thesacih/biosquest.com/site.php on line 236
Warning: Cannot modify header information - headers already sent by (output started at /home/thesacih/biosquest.com/site.php:1) in /home/thesacih/biosquest.com/site.php on line 237
Warning: Cannot modify header information - headers already sent by (output started at /home/thesacih/biosquest.com/site.php:1) in /home/thesacih/biosquest.com/site.php on line 238
Warning: Cannot modify header information - headers already sent by (output started at /home/thesacih/biosquest.com/site.php:1) in /home/thesacih/biosquest.com/site.php on line 239
'',
1 => __( 'Item added.' ),
2 => __( 'Item deleted.' ),
3 => __( 'Item updated.' ),
4 => __( 'Item not added.' ),
5 => __( 'Item not updated.' ),
6 => __( 'Items deleted.' ),
);
$messages['category'] = array(
0 => '',
1 => __( 'Category added.' ),
2 => __( 'Category deleted.' ),
3 => __( 'Category updated.' ),
4 => __( 'Category not added.' ),
5 => __( 'Category not updated.' ),
6 => __( 'Categories deleted.' ),
);
$messages['post_tag'] = array(
0 => '',
1 => __( 'Tag added.' ),
2 => __( 'Tag deleted.' ),
3 => __( 'Tag updated.' ),
4 => __( 'Tag not added.' ),
5 => __( 'Tag not updated.' ),
6 => __( 'Tags deleted.' ),
);
/**
* Filters the messages displayed when a tag is updated.
*
* @since 3.7.0
*
* @param array[] $messages Array of arrays of messages to be displayed, keyed by taxonomy name.
*/
$messages = apply_filters( 'term_updated_messages', $messages );
$message = false;
if ( isset( $_REQUEST['message'] ) && (int) $_REQUEST['message'] ) {
$msg = (int) $_REQUEST['message'];
if ( isset( $messages[ $taxonomy ][ $msg ] ) ) {
$message = $messages[ $taxonomy ][ $msg ];
} elseif ( ! isset( $messages[ $taxonomy ] ) && isset( $messages['_item'][ $msg ] ) ) {
$message = $messages['_item'][ $msg ];
}
}