Make WordPress Core


Ignore:
Timestamp:
08/08/2007 04:10:20 AM (17 years ago)
Author:
markjaquith
Message:

Don't tell users they have to update their .htaccess unless we're actually giving them something with which to update it. fixes #4706

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-permalink.php

    r5696 r5854  
    102102<?php if (isset($_POST['submit'])) : ?>
    103103<div id="message" class="updated fade"><p><?php
    104 if ($writable)
     104if ( $permalink_structure && !$usingpi && !$writable )
     105    _e('You should update your .htaccess now.');
     106else
    105107    _e('Permalink structure updated.');
    106 else
    107     _e('You should update your .htaccess now.');
    108108?></p></div>
    109109<?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.