diff options
Diffstat (limited to 'wp-inst/wp-admin/post.php')
-rw-r--r-- | wp-inst/wp-admin/post.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wp-inst/wp-admin/post.php b/wp-inst/wp-admin/post.php index f44be1e..a6795ba 100644 --- a/wp-inst/wp-admin/post.php +++ b/wp-inst/wp-admin/post.php @@ -317,6 +317,9 @@ default: <?php if ( isset($_GET['posted']) ) : ?> <div id="message" class="updated fade"><p><?php printf(__('Post saved. <a href="%s">View site »</a>'), get_bloginfo('home')); ?></p></div> <?php endif; ?> +<?php if ( strstr( $_SERVER['HTTP_USER_AGENT'], 'Safari' ) ) : ?> +<div class="updated">Safari support is still experimental. Many things will not work right due to limitations in the browser.</div> +<?php endif; ?> <?php if ( current_user_can('edit_posts') ) { $action = 'post'; |