mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-12 06:43:20 +01:00
Clap on Clap off
git-svn-id: http://svn.automattic.com/wordpress/trunk@2789 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1dbfb4ce58
commit
77e8b6fcc4
@ -77,7 +77,7 @@ addLoadEvent(blurry);
|
||||
</script>
|
||||
<script type="text/javascript" src="fat.js"></script>
|
||||
<?php if ( isset( $editing ) ) : ?>
|
||||
<?php if ( get_option('rich_editing') ) :?>
|
||||
<?php if ( 'true' == get_user_option('rich_editing') ) :?>
|
||||
<script type="text/javascript" src="tinymce/tiny_mce_src.js"></script>
|
||||
<script type="text/javascript">
|
||||
tinyMCE.init({
|
||||
|
@ -130,7 +130,7 @@ endforeach;
|
||||
|
||||
<fieldset id="postdiv">
|
||||
<legend><?php _e('Post') ?></legend>
|
||||
<?php if ( !get_option('rich_editing') ) : ?>
|
||||
<?php if ( 'true' != get_user_option('rich_editing') ) : ?>
|
||||
<?php the_quicktags(); ?>
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
|
@ -37,7 +37,7 @@ addLoadEvent(focusit);
|
||||
|
||||
<fieldset style="clear: both;">
|
||||
<legend><?php _e('Comment') ?></legend>
|
||||
<?php if ( !get_option('rich_editing') ) : ?>
|
||||
<?php if ( 'true' != get_user_option('rich_editing') ) : ?>
|
||||
<?php the_quicktags(); ?>
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
|
@ -117,7 +117,7 @@ endforeach;
|
||||
|
||||
<fieldset id="postdiv">
|
||||
<legend><?php _e('Page Content') ?></legend>
|
||||
<?php if ( !get_option('rich_editing') ) : ?>
|
||||
<?php if ( 'true' != get_user_option('rich_editing') ) : ?>
|
||||
<?php the_quicktags(); ?>
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
|
Loading…
Reference in New Issue
Block a user