Index: wp-admin/ms-sites.php
===================================================================
--- wp-admin/ms-sites.php	(revision 15343)
+++ wp-admin/ms-sites.php	(working copy)
@@ -179,6 +179,7 @@
 					<table class="form-table">
 						<?php
 						$editblog_default_role = 'subscriber';
+						$sd_options = array();
 						foreach ( $options as $option ) {
 							if ( $option->option_name == 'default_role' )
 								$editblog_default_role = $option->option_value;
@@ -188,9 +189,8 @@
 								if ( is_serialized_string( $option->option_value ) ) {
 									$option->option_value = esc_html( maybe_unserialize( $option->option_value ), 'single' );
 								} else {
-									$option->option_value = 'SERIALIZED DATA';
-									$disabled = true;
-									$class = 'all-options disabled';
+									$sd_options[] = $option;
+									continue;
 								}
 							}
 							if ( strpos( $option->option_value, "\n" ) !== false ) {
@@ -218,6 +218,22 @@
 					<p class="submit" style="text-align:center;"><input type="submit" name="Submit" value="<?php esc_attr_e( 'Update Options' ) ?>" /></p>
 				</div>
 				</div>
+				<div id="nonedit_blogoptions" class="postbox" >
+				<h3 class="hndle"><span><?php _e( 'Non-editable site options' ); ?></span></h3>
+				<div class="inside">
+					<table class="form-table">
+						<?php
+						foreach ( $sd_options as $option ) {
+							?>
+								<tr class="form-field">
+									<th scope="row"><?php echo esc_html( ucwords( str_replace( "_", " ", $option->option_name ) ) ); ?></th>
+								</tr>
+							<?php
+						} // End foreach
+							?>
+					</table>
+				</div>
+				</div>
 			</div>
 
 			<div class="metabox-holder" style="width:49%;float:right;">
