mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 01:09:39 +01:00
6b43f65c25
git-svn-id: http://svn.automattic.com/wordpress/trunk@1596 1a063a9b-81f0-0310-95a4-ce76da25c4cd
12 lines
279 B
PHP
12 lines
279 B
PHP
<?php
|
|
|
|
if ($user_level <= 6) {
|
|
die( __('You have do not have sufficient permissions to edit the options for this blog.') );
|
|
}
|
|
?>
|
|
|
|
<br clear="all" />
|
|
|
|
<?php if (isset($updated)) : ?>
|
|
<div class="updated"><p><strong><?php _e('Options saved.') ?></strong></p></div>
|
|
<?php endif; ?>
|