@@ -1124,26 +1124,26 @@ protected function _check_overwritten( $id ) {
11241124
11251125 if ($ server_val !== null ) {
11261126 // Show $_SERVER value.
1127- printf (__ ('This setting is overwritten by the %s variable. ' , 'litespeed-cache ' ), '$_SERVER ' );
1127+ printf (__ ('This value is overwritten by the %s variable. ' , 'litespeed-cache ' ), '$_SERVER ' );
11281128 $ val = '$_SERVER[" ' .$ server_val [0 ].'"] = ' . $ server_val [1 ];
11291129 }
11301130 else if ($ filter_val !== null ) {
11311131 // Show filter value.
1132- echo __ ('This setting is overwritten by the filter. ' , 'litespeed-cache ' );
1132+ echo __ ('This value is overwritten by the filter. ' , 'litespeed-cache ' );
11331133 }
11341134 else if ($ const_val !== null ) {
11351135 // Show CONSTANT value.
1136- printf (__ ('This setting is overwritten by the PHP constant %s. ' , 'litespeed-cache ' ), '<code> ' . Base::conf_const ($ id ) . '</code> ' );
1136+ printf (__ ('This value is overwritten by the PHP constant %s. ' , 'litespeed-cache ' ), '<code> ' . Base::conf_const ($ id ) . '</code> ' );
11371137 } elseif (is_multisite () ){
11381138 // Show multisite overwrite.
11391139 if ( get_current_blog_id () != BLOG_ID_CURRENT_SITE && $ this ->conf (self ::NETWORK_O_USE_PRIMARY )) {
1140- echo __ ('This setting is overwritten by the primary site setting. ' , 'litespeed-cache ' );
1140+ echo __ ('This value is overwritten by the primary site setting. ' , 'litespeed-cache ' );
11411141 } else {
1142- echo __ ('This setting is overwritten by the Network setting. ' , 'litespeed-cache ' );
1142+ echo __ ('This value is overwritten by the Network setting. ' , 'litespeed-cache ' );
11431143 }
11441144 }
11451145
1146- echo sprintf (__ ('Currently set to %s ' , 'litespeed-cache ' ), "<code> $ val</code> " ) . '</div> ' ;
1146+ echo ' ' . sprintf (__ ('Currently set to %s ' , 'litespeed-cache ' ), "<code> $ val</code> " ) . '</div> ' ;
11471147 } else if ( 'textarea ' === $ type && null !== $ filter_val ){
11481148 // Show warning for textarea.
11491149 // Textarea sizes.
0 commit comments