Plugin Directory

Changeset 1057807


Ignore:
Timestamp:
01/01/2015 07:39:57 AM (11 years ago)
Author:
ExpandedFronts
Message:

Updated to 1.8.3 (see readme.txt for further details)

Location:
revisr/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • revisr/trunk/README.md

    r1045532 r1057807  
    1 #Revisr [![Build Status](https://travis-ci.org/ExpandedFronts/revisr.svg?branch=master)](https://travis-ci.org/ExpandedFronts/revisr) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/ExpandedFronts/revisr/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/ExpandedFronts/revisr/?branch=master)
     1#Revisr [![Build Status](https://travis-ci.org/ExpandedFronts/revisr.svg?branch=master)](https://travis-ci.org/ExpandedFronts/revisr) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/ExpandedFronts/revisr/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/ExpandedFronts/Revisr/?branch=master)
    22
    33##Description##
     
    5050
    5151## Changelog ##
     52
     53#### 1.8.3 ####
     54* Fixed bug with spaces in filename
    5255
    5356#### 1.8.2 ####
  • revisr/trunk/includes/class-revisr-git.php

    r1045532 r1057807  
    485485           
    486486            if ( $status == __( 'Deleted', 'revisr' ) ) {
    487                 if ( $this->run( "rm {$file}" ) === false ) {
     487                if ( $this->run( 'rm "' . $file . '"' ) === false ) {
    488488                    $errors[] = $file;
    489489                }
    490490            } else {
    491                 if ( $this->run( "add {$file}" ) === false ) {
     491                if ( $this->run( 'add "' . $file . '"' ) === false ) {
    492492                    $errors[] = $file;
    493493                }
  • revisr/trunk/readme.txt

    r1045532 r1057807  
    7979
    8080== Changelog ==
     81
     82= 1.8.3 =
     83* Fixed bug with spaces in filename
    8184
    8285= 1.8.2 =
  • revisr/trunk/revisr.php

    r1045532 r1057807  
    99 * Plugin URI:        http://revisr.io/
    1010 * Description:       A plugin that allows users to manage WordPress websites with Git repositories.
    11  * Version:           1.8.2
     11 * Version:           1.8.3
    1212 * Author:            Expanded Fronts, LLC
    1313 * Author URI:        http://expandedfronts.com/
Note: See TracChangeset for help on using the changeset viewer.