Make WordPress Core


Ignore:
Timestamp:
02/29/2004 08:43:36 AM (22 years ago)
Author:
saxmatt
Message:

Migrating more of the global options to get_settings().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-form-advanced.php

    r870 r955  
    9090        <div id="quicktags">
    9191<?php
    92 if ($use_quicktags) {
     92if ( get_settings('use_quicktags') ) {
    9393    echo '<a href="http://wordpress.org/docs/reference/post/#quicktags" title="Help with quicktags">Quicktags</a>: ';
    9494    include('quicktags.php');
     
    106106
    107107<?php
    108 if ($use_quicktags) {
     108if ( get_settings('use_quicktags') ) {
    109109?>
    110110<script type="text/javascript" language="JavaScript">
Note: See TracChangeset for help on using the changeset viewer.