Code MUST use 4 spaces for indenting, not tabs.
As mentioned above, you should use spaces instead of tabs when indenting code. You can adjust the settings in your text editor to output 4 spaces instead of a tab character, when you press the Tab key.
Язык - Go .
go fmt
делает так, как всенепременно рекомендуется делать для всех исходников, написанных на этом языке. Умеет работать как с отдельными файлами, так и с целыми каталогами файлов. Все делает совершенно автоматически. window.addEventListener('click', function(){
if (!event.target.closest('#myDIV')) {
document.getElementById("myDIV").style.display = "none";
}
});
momen()
add_filter( 'wpcf7_validate_textarea', 'custom_textarea_validation_filter', 20, 2 );
add_filter( 'wpcf7_validate_textarea*', 'custom_textarea_validation_filter', 20, 2 );
function custom_textarea_validation_filter( $result, $tag ) {
if ( 'your-message' == $tag->name ) {
$your_message = isset( $_POST['your-message'] ) ? trim( $_POST['your-message'] ) : '';
if ( strpos($your_message, 'http://') !== false ) {
$result->invalidate( $tag, "Incorrect value" );
}
}
return $result;
}