Plugin Directory

Changeset 2616587


Ignore:
Timestamp:
10/19/2021 02:00:50 PM (4 years ago)
Author:
mahype
Message:

Update to version 1.0.14 from GitHub

Location:
torro-forms
Files:
3268 added
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • torro-forms/tags/1.0.14/readme.txt

    r2616467 r2616587  
    1010Requires PHP:      5.6
    1111Stable tag:        1.0.10
    12 Version:           1.0.11
     12Version:           1.0.14
    1313License:           GNU General Public License v2 (or later)
    1414License URI:       http://www.gnu.org/licenses/gpl-2.0.html
     
    8484== Changelog ==
    8585
     86= 1.0.14 =
     87* Enhanced: Replaced XLS library, because of PHP errors.
     88
    8689= 1.0.13 =
    8790* Fixed: Readded vendor and node_module directories.
     
    9194
    9295= 1.0.11 =
    93 * Enhaned: Tested up to 5.8.1.
     96* Enhanced: Tested up to 5.8.1.
    9497* Enhanced: Cleaned up repo & updated composer dependency.
    9598* Security: Updated phpspreadsheet lib.
  • torro-forms/tags/1.0.14/src/components/submission-export-xls.php

    r1876507 r2616587  
    1212use PhpOffice\PhpSpreadsheet\Spreadsheet;
    1313use PhpOffice\PhpSpreadsheet\IOFactory;
     14use XLSXWriter;
    1415
    1516/**
     
    4546        array_unshift( $rows, $columns );
    4647
    47         $spreadsheet = new Spreadsheet();
    48         $spreadsheet->getActiveSheet()->fromArray( $rows );
    49 
    50         $writer = IOFactory::createWriter( $spreadsheet, 'Xls' );
    51         $writer->save( 'php://output' );
     48        $writer = new XLSXWriter();
     49        $writer->writeSheet( $rows );
     50        $writer->writeToStdOut();
    5251        exit;
    5352    }
  • torro-forms/tags/1.0.14/torro-forms.php

    r2616467 r2616587  
    1010 * Plugin URI:  https://torro-forms.com
    1111 * Description: Torro Forms is an extendable WordPress form builder with Drag & Drop functionality, chart evaluation and more - with WordPress look and feel.
    12  * Version:     1.0.13
     12 * Version:     1.0.14
    1313 * Author:      Awesome UG
    1414 * Author URI:  https://www.awesome.ug
  • torro-forms/trunk/readme.txt

    r2616467 r2616587  
    1010Requires PHP:      5.6
    1111Stable tag:        1.0.10
    12 Version:           1.0.11
     12Version:           1.0.14
    1313License:           GNU General Public License v2 (or later)
    1414License URI:       http://www.gnu.org/licenses/gpl-2.0.html
     
    8484== Changelog ==
    8585
     86= 1.0.14 =
     87* Enhanced: Replaced XLS library, because of PHP errors.
     88
    8689= 1.0.13 =
    8790* Fixed: Readded vendor and node_module directories.
     
    9194
    9295= 1.0.11 =
    93 * Enhaned: Tested up to 5.8.1.
     96* Enhanced: Tested up to 5.8.1.
    9497* Enhanced: Cleaned up repo & updated composer dependency.
    9598* Security: Updated phpspreadsheet lib.
  • torro-forms/trunk/src/components/submission-export-xls.php

    r1876507 r2616587  
    1212use PhpOffice\PhpSpreadsheet\Spreadsheet;
    1313use PhpOffice\PhpSpreadsheet\IOFactory;
     14use XLSXWriter;
    1415
    1516/**
     
    4546        array_unshift( $rows, $columns );
    4647
    47         $spreadsheet = new Spreadsheet();
    48         $spreadsheet->getActiveSheet()->fromArray( $rows );
    49 
    50         $writer = IOFactory::createWriter( $spreadsheet, 'Xls' );
    51         $writer->save( 'php://output' );
     48        $writer = new XLSXWriter();
     49        $writer->writeSheet( $rows );
     50        $writer->writeToStdOut();
    5251        exit;
    5352    }
  • torro-forms/trunk/torro-forms.php

    r2616467 r2616587  
    1010 * Plugin URI:  https://torro-forms.com
    1111 * Description: Torro Forms is an extendable WordPress form builder with Drag & Drop functionality, chart evaluation and more - with WordPress look and feel.
    12  * Version:     1.0.13
     12 * Version:     1.0.14
    1313 * Author:      Awesome UG
    1414 * Author URI:  https://www.awesome.ug
Note: See TracChangeset for help on using the changeset viewer.