Don't allow hiding of save box

git-svn-id: http://svn.automattic.com/wordpress/trunk@9704 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-11-15 00:09:18 +00:00
parent 072293c36b
commit 12a505e7cb

View File

@ -2743,7 +2743,7 @@ function meta_box_prefs($page) {
if ( false == $box || ! $box['title'] )
continue;
// Submit box cannot be hidden
if ( 'submitdiv' == $box['id'] )
if ( 'submitdiv' == $box['id'] || 'linksubmitdiv' == $box['id'] )
continue;
$box_id = $box['id'];
echo '<label for="' . $box_id . '-hide">';