Make WordPress Core


Ignore:
Timestamp:
12/04/2012 06:01:47 AM (13 years ago)
Author:
azaozz
Message:

Editor: add sanity limit for editor height of 5000px, save only when resizing the Visual or the Text editor, fixes #22708

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/class-wp-editor.php

    r22948 r23016  
    7272        if ( $set['editor_height'] < 50 )
    7373            $set['editor_height'] = 50;
     74        elseif ( $set['editor_height'] > 3000 )
     75            $set['editor_height'] = 5000;
    7476
    7577        return $set;
Note: See TracChangeset for help on using the changeset viewer.