Make WordPress Core


Ignore:
Timestamp:
02/29/2004 08:43:36 AM (21 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.php

    r869 r955  
    7676        <div id="quicktags">
    7777<?php
    78 if ($use_quicktags && 'bookmarklet' != $mode) {
     78if (get_settings('use_quicktags') && 'bookmarklet' != $mode) {
    7979    echo '<a href="http://wordpress.org/docs/reference/post/#quicktags" title="Help with quicktags">Quicktags</a>: ';
    8080    include('quicktags.php');
     
    9292
    9393<?php
    94 if ($use_quicktags) {
     94if (get_settings('use_quicktags')) {
    9595?>
    9696<script type="text/javascript" language="JavaScript">
Note: See TracChangeset for help on using the changeset viewer.