Make WordPress Core

Ticket #26908: 26908.patch

File 26908.patch, 697 bytes (added by GregRoss, 11 years ago)
  • class-wp-editor.php

     
    893893                                continue;
    894894                        }
    895895
    896                         $onclick = ! empty( $args['onclick'] ) ? ' onclick="' . $args['onclick'] . '"' : '';
     896                        if( true == array_key_exists( 'customhtml', $args ) ) {
     897                                echo $args['customhtml'];
     898                        }
     899                        else {
     900                       
     901                                $onclick = ! empty( $args['onclick'] ) ? ' onclick="' . $args['onclick'] . '"' : '';
    897902                        ?>
    898903
    899904                        <div class="mce-widget mce-btn<?php if ( $args['both'] ) { ?> wp-fullscreen-both<?php } ?>">
     
    902907                        </button>
    903908                        </div>
    904909                        <?php
     910                        }
    905911                }
    906912
    907913                ?>