Plugin Directory

Changeset 476397


Ignore:
Timestamp:
12/16/2011 02:14:16 PM (14 years ago)
Author:
mbence
Message:

v1.2.1 no-cache fix

Location:
wp-livephp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-livephp/trunk/readme.txt

    r475855 r476397  
    3535
    3636== Changelog ==
     37= 1.2.1 =
     38* No cache fix for IE
    3739= 1.2 =
    3840* Added Backend (wp-admin) monitoring option
     
    4850
    4951== Upgrade Notice ==
     52= 1.2.1 =
     53Update to 1.2.1 if you plan to use this plugin on Internet Explorer
    5054= 1.2 =
    5155This version adds wp-admin monitoring and a nice settings page
  • wp-livephp/trunk/wp-live.php

    r475855 r476397  
    55  Plugin URI: http://bencemeszaros.com/livephp
    66  Description: Automatically refresh your browser if you change any files in your theme or plugins directory
    7   Version: 1.2
     7  Version: 1.2.1
    88  Author: Bence Meszaros
    99  Author URI: http://bencemeszaros.com
     
    5151        foreach ($this->dirs as $root)
    5252        {
     53            // no cache headers
     54            header("Cache-Control: no-cache, must-revalidate");
     55            header("Expires: -1");
     56           
    5357            if ($this->checkDir(realpath($root), $start))
    5458            {
Note: See TracChangeset for help on using the changeset viewer.