Make WordPress Core

Changeset 2315


Ignore:
Timestamp:
02/14/2005 03:22:25 AM (21 years ago)
Author:
saxmatt
Message:

Clearer message if we can't write the .htaccess file - http://mosquito.wordpress.org/view.php?id=694

File:
1 edited

Legend:

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

    r2310 r2315  
    4444
    4545<?php if (isset($_POST['submit'])) : ?>
    46 <div class="updated"><p><?php _e('Permalink structure updated.'); ?></p></div>
     46<div class="updated"><p><?php
     47if ($writable)
     48    _e('Permalink structure updated.');
     49else
     50    _e('You should update your .htaccess now.');
     51?></p></div>
    4752<?php endif; ?>
    4853
Note: See TracChangeset for help on using the changeset viewer.