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-comment.php

    r872 r955  
    4444        <div id="quicktags">
    4545<?php
    46 if ($use_quicktags) {
     46if (get_settings('use_quicktags')) {
    4747    echo '<a href="http://wordpress.org/docs/reference/post/#quicktags" title="Help with quicktags">Quicktags</a>: ';
    4848    include('quicktags.php');
     
    6060
    6161<?php
    62 if ($use_quicktags) {
     62if (get_settings('use_quicktags')) {
    6363?>
    6464<script type="text/javascript" language="JavaScript">
Note: See TracChangeset for help on using the changeset viewer.