Plugin Directory

Changeset 1592803


Ignore:
Timestamp:
02/09/2017 09:40:23 PM (9 years ago)
Author:
drumba
Message:

Release 1.5.1, see readme.txt for the changelog.

Location:
edd-fastbill
Files:
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • edd-fastbill/tags/1.5.1/edd-fastbill.php

    r1590243 r1592803  
    66Author: Markus Drubba
    77Author URI: http://markusdrubba.de
    8 Version: 1.5.0
     8Version: 1.5.1
    99Text Domain: edd-fastbill
    1010Domain Path: /languages
  • edd-fastbill/tags/1.5.1/includes/fastbill-functions.php

    r1590243 r1592803  
    1414use drumba\EDD\FastBill\Helper\Logger;
    1515use SimpleXMLElement;
     16use Exception;
    1617
    1718class FastBill {
     
    2324     * Create a new instance
    2425     *
    25      * @throws \Exception
     26     * @throws Exception
    2627     */
    2728    public function __construct() {
    2829        global $edd_options;
    2930
     31        if ( ! isset( $edd_options['drubba_fb_fastbill_api_key'] ) || ! isset( $edd_options['drubba_fb_fastbill_email'] ) ) {
     32            throw new Exception( __( 'Invalid FastBill credentials supplied', 'edd-fastbill' ) );
     33        }
     34
    3035        $this->api_key   = $edd_options['drubba_fb_fastbill_api_key'];
    3136        $this->api_email = $edd_options['drubba_fb_fastbill_email'];
    3237        $this->logger    = new Logger( 'edd_fastbill_error_log' );
    3338
    34         if ( empty( $this->api_key ) || empty( $this->api_email ) ) {
    35             throw new \Exception( __( 'Invalid FastBill credentials supplied', 'edd-fastbill' ) );
    36         }
    3739    }
    3840
     
    4042     * Create a client record in FastBill for the given order.
    4143     *
    42      * @param $payment_id
     44     * @param         $payment_id
     45     * @param boolean $client_id
    4346     *
    4447     * @return mixed
  • edd-fastbill/tags/1.5.1/includes/payment-actions.php

    r1590243 r1592803  
    1111
    1212namespace drumba\EDD\FastBill;
    13 
    1413
    1514class Payment_Actions {
     
    113112     */
    114113    private function _checkout_with_advance_payment_gateway() {
     114        if ( ! isset( $this->edd_options['drubba_fb_fastbill_advance_payment_gateways'] ) || ! is_array( $this->edd_options['drubba_fb_fastbill_advance_payment_gateways'] ) ) {
     115            return false;
     116        }
     117
    115118        $gateway = edd_get_payment_gateway( $this->payment_id );
    116119
     
    120123}
    121124
    122 $payment_actions = new Payment_Actions( new FastBill() );
    123 $payment_actions->load();
     125try {
     126
     127    $fastbill        = new FastBill();
     128    $payment_actions = new Payment_Actions( $fastbill );
     129    $payment_actions->load();
     130
     131} catch ( \Exception $e ) {
     132}
  • edd-fastbill/tags/1.5.1/includes/register-settings.php

    r1590243 r1592803  
    213213    );
    214214
    215     $fastbill        = new \drumba\EDD\FastBill\FastBill();
     215    try {
     216
     217        $fastbill = new \drumba\EDD\FastBill\FastBill();
     218
     219    } catch ( \Exception $e ) {
     220
     221        return $templates;
     222
     223    }
     224
    216225    $templates_array = $fastbill->templates_get();
    217226
  • edd-fastbill/tags/1.5.1/languages/edd-fastbill-de_DE.po

    r1590243 r1592803  
    33"Project-Id-Version: EDD - FastBill\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2017-02-06 21:07+0100\n"
    6 "PO-Revision-Date: 2017-02-06 21:07+0100\n"
     5"POT-Creation-Date: 2017-02-09 22:36+0100\n"
     6"PO-Revision-Date: 2017-02-09 22:36+0100\n"
    77"Last-Translator: Markus Drubba <kontakt@markusdrubba.de>\n"
    88"Language-Team: \n"
     
    2020"X-Poedit-SearchPath-0: .\n"
    2121
    22 #: includes/fastbill-functions.php:35
     22#: includes/fastbill-functions.php:32
    2323msgid "Invalid FastBill credentials supplied"
    2424msgstr "Scheinbar stimmen deine FastBill Zugangsdaten nicht"
    2525
    2626# @ edd-fastbill
    27 #: includes/fastbill-functions.php:163
     27#: includes/fastbill-functions.php:166
    2828msgid "There was an error creating this customer in FastBill:"
    2929msgstr "Es gab einen Fehler beim Erstellen des Kunden bei FastBill:"
    3030
    3131# @ edd-fastbill
    32 #: includes/fastbill-functions.php:164 includes/fastbill-functions.php:216
    33 #: includes/fastbill-functions.php:382 includes/fastbill-functions.php:439
    34 #: includes/fastbill-functions.php:494 includes/fastbill-functions.php:548
    35 #: includes/fastbill-functions.php:603 includes/fastbill-functions.php:636
    36 #: includes/fastbill-functions.php:643 includes/fastbill-functions.php:680
    37 #: includes/fastbill-functions.php:735 includes/fastbill-functions.php:788
     32#: includes/fastbill-functions.php:167 includes/fastbill-functions.php:219
     33#: includes/fastbill-functions.php:385 includes/fastbill-functions.php:442
     34#: includes/fastbill-functions.php:497 includes/fastbill-functions.php:551
     35#: includes/fastbill-functions.php:606 includes/fastbill-functions.php:639
     36#: includes/fastbill-functions.php:646 includes/fastbill-functions.php:683
     37#: includes/fastbill-functions.php:738 includes/fastbill-functions.php:791
    3838msgid "Error: "
    3939msgstr "Fehler: "
    4040
    4141# @ edd-fastbill
    42 #: includes/fastbill-functions.php:215
     42#: includes/fastbill-functions.php:218
    4343msgid "There was an error looking up this customer in FastBill:"
    4444msgstr "Es gab einen Fehler beim Suchen des Kunden bei FastBill:"
    4545
    4646# @ edd-fastbill
    47 #: includes/fastbill-functions.php:279
     47#: includes/fastbill-functions.php:282
    4848msgid "Discount used: "
    4949msgstr "Verwendeter Gutschein-Code: "
    5050
    51 #: includes/fastbill-functions.php:312
     51#: includes/fastbill-functions.php:315
    5252msgid "renewal"
    5353msgstr "Lizenzverlängerung"
    5454
    5555# @ edd-fastbill
    56 #: includes/fastbill-functions.php:381
     56#: includes/fastbill-functions.php:384
    5757msgid "There was an error adding the invocie to FastBill:"
    5858msgstr "Es gab einen Fehler beim Erstellen der Rechnung bei FastBill:"
    5959
    6060# @ edd-fastbill
    61 #: includes/fastbill-functions.php:438 includes/fastbill-functions.php:493
     61#: includes/fastbill-functions.php:441 includes/fastbill-functions.php:496
    6262msgid "There was an error completing invoice in FastBill:"
    6363msgstr "Es gab einen Fehler beim finalen Erstellen der Rechnung:"
    6464
    65 #: includes/fastbill-functions.php:547
     65#: includes/fastbill-functions.php:550
    6666msgid "There was an error canceling an invoice in FastBill:"
    6767msgstr "Es gab einen Fehler beim canceln der Rechnung in FastBill:"
    6868
    69 #: includes/fastbill-functions.php:602
     69#: includes/fastbill-functions.php:605
    7070msgid "There was an error deleting an invoice in FastBill:"
    7171msgstr "Es gab einen Fehler beim löschen der Rechnung in FastBill:"
    7272
    73 #: includes/fastbill-functions.php:679
     73#: includes/fastbill-functions.php:682
    7474msgid "There was an error sending an invoice via FastBill:"
    7575msgstr "Es gab einen Fehler beim senden der Rechnung via FastBill:"
    7676
    7777# @ edd-fastbill
    78 #: includes/fastbill-functions.php:734
     78#: includes/fastbill-functions.php:737
    7979msgid "There was an error creating a payment in FastBill:"
    8080msgstr "Es gab einen Fehler beim setzen der Rechnung als bezahlt:"
    8181
    8282# @ edd-fastbill
    83 #: includes/fastbill-functions.php:787
     83#: includes/fastbill-functions.php:790
    8484msgid "There was an error when receiving templates from FastBill:"
    8585msgstr ""
  • edd-fastbill/tags/1.5.1/languages/edd-fastbill.pot

    r1590243 r1592803  
    66"Project-Id-Version: EDD - FastBill\n"
    77"Report-Msgid-Bugs-To: \n"
    8 "POT-Creation-Date: 2017-02-06 21:07+0100\n"
     8"POT-Creation-Date: 2017-02-09 22:36+0100\n"
    99"PO-Revision-Date: 2016-12-07 00:33+0100\n"
    1010"Last-Translator: Markus Drubba <kontakt@markusdrubba.de>\n"
     
    2323"X-Poedit-SearchPath-0: .\n"
    2424
    25 #: includes/fastbill-functions.php:35
     25#: includes/fastbill-functions.php:32
    2626msgid "Invalid FastBill credentials supplied"
    2727msgstr ""
    2828
    29 #: includes/fastbill-functions.php:163
     29#: includes/fastbill-functions.php:166
    3030msgid "There was an error creating this customer in FastBill:"
    3131msgstr ""
    3232
    33 #: includes/fastbill-functions.php:164 includes/fastbill-functions.php:216 includes/fastbill-functions.php:382
    34 #: includes/fastbill-functions.php:439 includes/fastbill-functions.php:494 includes/fastbill-functions.php:548
    35 #: includes/fastbill-functions.php:603 includes/fastbill-functions.php:636 includes/fastbill-functions.php:643
    36 #: includes/fastbill-functions.php:680 includes/fastbill-functions.php:735 includes/fastbill-functions.php:788
     33#: includes/fastbill-functions.php:167 includes/fastbill-functions.php:219 includes/fastbill-functions.php:385
     34#: includes/fastbill-functions.php:442 includes/fastbill-functions.php:497 includes/fastbill-functions.php:551
     35#: includes/fastbill-functions.php:606 includes/fastbill-functions.php:639 includes/fastbill-functions.php:646
     36#: includes/fastbill-functions.php:683 includes/fastbill-functions.php:738 includes/fastbill-functions.php:791
    3737msgid "Error: "
    3838msgstr ""
    3939
    40 #: includes/fastbill-functions.php:215
     40#: includes/fastbill-functions.php:218
    4141msgid "There was an error looking up this customer in FastBill:"
    4242msgstr ""
    4343
    44 #: includes/fastbill-functions.php:279
     44#: includes/fastbill-functions.php:282
    4545msgid "Discount used: "
    4646msgstr ""
    4747
    48 #: includes/fastbill-functions.php:312
     48#: includes/fastbill-functions.php:315
    4949msgid "renewal"
    5050msgstr ""
    5151
    52 #: includes/fastbill-functions.php:381
     52#: includes/fastbill-functions.php:384
    5353msgid "There was an error adding the invocie to FastBill:"
    5454msgstr ""
    5555
    56 #: includes/fastbill-functions.php:438 includes/fastbill-functions.php:493
     56#: includes/fastbill-functions.php:441 includes/fastbill-functions.php:496
    5757msgid "There was an error completing invoice in FastBill:"
    5858msgstr ""
    5959
    60 #: includes/fastbill-functions.php:547
     60#: includes/fastbill-functions.php:550
    6161msgid "There was an error canceling an invoice in FastBill:"
    6262msgstr ""
    6363
    64 #: includes/fastbill-functions.php:602
     64#: includes/fastbill-functions.php:605
    6565msgid "There was an error deleting an invoice in FastBill:"
    6666msgstr ""
    6767
    68 #: includes/fastbill-functions.php:679
     68#: includes/fastbill-functions.php:682
    6969msgid "There was an error sending an invoice via FastBill:"
    7070msgstr ""
    7171
    72 #: includes/fastbill-functions.php:734
     72#: includes/fastbill-functions.php:737
    7373msgid "There was an error creating a payment in FastBill:"
    7474msgstr ""
    7575
    76 #: includes/fastbill-functions.php:787
     76#: includes/fastbill-functions.php:790
    7777msgid "There was an error when receiving templates from FastBill:"
    7878msgstr ""
  • edd-fastbill/tags/1.5.1/readme.txt

    r1590243 r1592803  
    55Requires at least: 4.5
    66Tested up to: 4.7.2
    7 Stable tag: 1.5.0
     7Stable tag: 1.5.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040== Changelog ==
     41
     42= 2017-02-09 1.5.1 =
     43
     44* Fixed: Fatal Error on plugin activation or when the FastBill credentials are not saved
     45* Fixed: Fixed a PHP Notice when no advanced payment gateways is selected
    4146
    4247= 2017-02-04 1.5.0 =
  • edd-fastbill/trunk/edd-fastbill.php

    r1590243 r1592803  
    66Author: Markus Drubba
    77Author URI: http://markusdrubba.de
    8 Version: 1.5.0
     8Version: 1.5.1
    99Text Domain: edd-fastbill
    1010Domain Path: /languages
  • edd-fastbill/trunk/includes/fastbill-functions.php

    r1590243 r1592803  
    1414use drumba\EDD\FastBill\Helper\Logger;
    1515use SimpleXMLElement;
     16use Exception;
    1617
    1718class FastBill {
     
    2324     * Create a new instance
    2425     *
    25      * @throws \Exception
     26     * @throws Exception
    2627     */
    2728    public function __construct() {
    2829        global $edd_options;
    2930
     31        if ( ! isset( $edd_options['drubba_fb_fastbill_api_key'] ) || ! isset( $edd_options['drubba_fb_fastbill_email'] ) ) {
     32            throw new Exception( __( 'Invalid FastBill credentials supplied', 'edd-fastbill' ) );
     33        }
     34
    3035        $this->api_key   = $edd_options['drubba_fb_fastbill_api_key'];
    3136        $this->api_email = $edd_options['drubba_fb_fastbill_email'];
    3237        $this->logger    = new Logger( 'edd_fastbill_error_log' );
    3338
    34         if ( empty( $this->api_key ) || empty( $this->api_email ) ) {
    35             throw new \Exception( __( 'Invalid FastBill credentials supplied', 'edd-fastbill' ) );
    36         }
    3739    }
    3840
     
    4042     * Create a client record in FastBill for the given order.
    4143     *
    42      * @param $payment_id
     44     * @param         $payment_id
     45     * @param boolean $client_id
    4346     *
    4447     * @return mixed
  • edd-fastbill/trunk/includes/payment-actions.php

    r1590243 r1592803  
    1111
    1212namespace drumba\EDD\FastBill;
    13 
    1413
    1514class Payment_Actions {
     
    113112     */
    114113    private function _checkout_with_advance_payment_gateway() {
     114        if ( ! isset( $this->edd_options['drubba_fb_fastbill_advance_payment_gateways'] ) || ! is_array( $this->edd_options['drubba_fb_fastbill_advance_payment_gateways'] ) ) {
     115            return false;
     116        }
     117
    115118        $gateway = edd_get_payment_gateway( $this->payment_id );
    116119
     
    120123}
    121124
    122 $payment_actions = new Payment_Actions( new FastBill() );
    123 $payment_actions->load();
     125try {
     126
     127    $fastbill        = new FastBill();
     128    $payment_actions = new Payment_Actions( $fastbill );
     129    $payment_actions->load();
     130
     131} catch ( \Exception $e ) {
     132}
  • edd-fastbill/trunk/includes/register-settings.php

    r1590243 r1592803  
    213213    );
    214214
    215     $fastbill        = new \drumba\EDD\FastBill\FastBill();
     215    try {
     216
     217        $fastbill = new \drumba\EDD\FastBill\FastBill();
     218
     219    } catch ( \Exception $e ) {
     220
     221        return $templates;
     222
     223    }
     224
    216225    $templates_array = $fastbill->templates_get();
    217226
  • edd-fastbill/trunk/languages/edd-fastbill-de_DE.po

    r1590243 r1592803  
    33"Project-Id-Version: EDD - FastBill\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2017-02-06 21:07+0100\n"
    6 "PO-Revision-Date: 2017-02-06 21:07+0100\n"
     5"POT-Creation-Date: 2017-02-09 22:36+0100\n"
     6"PO-Revision-Date: 2017-02-09 22:36+0100\n"
    77"Last-Translator: Markus Drubba <kontakt@markusdrubba.de>\n"
    88"Language-Team: \n"
     
    2020"X-Poedit-SearchPath-0: .\n"
    2121
    22 #: includes/fastbill-functions.php:35
     22#: includes/fastbill-functions.php:32
    2323msgid "Invalid FastBill credentials supplied"
    2424msgstr "Scheinbar stimmen deine FastBill Zugangsdaten nicht"
    2525
    2626# @ edd-fastbill
    27 #: includes/fastbill-functions.php:163
     27#: includes/fastbill-functions.php:166
    2828msgid "There was an error creating this customer in FastBill:"
    2929msgstr "Es gab einen Fehler beim Erstellen des Kunden bei FastBill:"
    3030
    3131# @ edd-fastbill
    32 #: includes/fastbill-functions.php:164 includes/fastbill-functions.php:216
    33 #: includes/fastbill-functions.php:382 includes/fastbill-functions.php:439
    34 #: includes/fastbill-functions.php:494 includes/fastbill-functions.php:548
    35 #: includes/fastbill-functions.php:603 includes/fastbill-functions.php:636
    36 #: includes/fastbill-functions.php:643 includes/fastbill-functions.php:680
    37 #: includes/fastbill-functions.php:735 includes/fastbill-functions.php:788
     32#: includes/fastbill-functions.php:167 includes/fastbill-functions.php:219
     33#: includes/fastbill-functions.php:385 includes/fastbill-functions.php:442
     34#: includes/fastbill-functions.php:497 includes/fastbill-functions.php:551
     35#: includes/fastbill-functions.php:606 includes/fastbill-functions.php:639
     36#: includes/fastbill-functions.php:646 includes/fastbill-functions.php:683
     37#: includes/fastbill-functions.php:738 includes/fastbill-functions.php:791
    3838msgid "Error: "
    3939msgstr "Fehler: "
    4040
    4141# @ edd-fastbill
    42 #: includes/fastbill-functions.php:215
     42#: includes/fastbill-functions.php:218
    4343msgid "There was an error looking up this customer in FastBill:"
    4444msgstr "Es gab einen Fehler beim Suchen des Kunden bei FastBill:"
    4545
    4646# @ edd-fastbill
    47 #: includes/fastbill-functions.php:279
     47#: includes/fastbill-functions.php:282
    4848msgid "Discount used: "
    4949msgstr "Verwendeter Gutschein-Code: "
    5050
    51 #: includes/fastbill-functions.php:312
     51#: includes/fastbill-functions.php:315
    5252msgid "renewal"
    5353msgstr "Lizenzverlängerung"
    5454
    5555# @ edd-fastbill
    56 #: includes/fastbill-functions.php:381
     56#: includes/fastbill-functions.php:384
    5757msgid "There was an error adding the invocie to FastBill:"
    5858msgstr "Es gab einen Fehler beim Erstellen der Rechnung bei FastBill:"
    5959
    6060# @ edd-fastbill
    61 #: includes/fastbill-functions.php:438 includes/fastbill-functions.php:493
     61#: includes/fastbill-functions.php:441 includes/fastbill-functions.php:496
    6262msgid "There was an error completing invoice in FastBill:"
    6363msgstr "Es gab einen Fehler beim finalen Erstellen der Rechnung:"
    6464
    65 #: includes/fastbill-functions.php:547
     65#: includes/fastbill-functions.php:550
    6666msgid "There was an error canceling an invoice in FastBill:"
    6767msgstr "Es gab einen Fehler beim canceln der Rechnung in FastBill:"
    6868
    69 #: includes/fastbill-functions.php:602
     69#: includes/fastbill-functions.php:605
    7070msgid "There was an error deleting an invoice in FastBill:"
    7171msgstr "Es gab einen Fehler beim löschen der Rechnung in FastBill:"
    7272
    73 #: includes/fastbill-functions.php:679
     73#: includes/fastbill-functions.php:682
    7474msgid "There was an error sending an invoice via FastBill:"
    7575msgstr "Es gab einen Fehler beim senden der Rechnung via FastBill:"
    7676
    7777# @ edd-fastbill
    78 #: includes/fastbill-functions.php:734
     78#: includes/fastbill-functions.php:737
    7979msgid "There was an error creating a payment in FastBill:"
    8080msgstr "Es gab einen Fehler beim setzen der Rechnung als bezahlt:"
    8181
    8282# @ edd-fastbill
    83 #: includes/fastbill-functions.php:787
     83#: includes/fastbill-functions.php:790
    8484msgid "There was an error when receiving templates from FastBill:"
    8585msgstr ""
  • edd-fastbill/trunk/languages/edd-fastbill.pot

    r1590243 r1592803  
    66"Project-Id-Version: EDD - FastBill\n"
    77"Report-Msgid-Bugs-To: \n"
    8 "POT-Creation-Date: 2017-02-06 21:07+0100\n"
     8"POT-Creation-Date: 2017-02-09 22:36+0100\n"
    99"PO-Revision-Date: 2016-12-07 00:33+0100\n"
    1010"Last-Translator: Markus Drubba <kontakt@markusdrubba.de>\n"
     
    2323"X-Poedit-SearchPath-0: .\n"
    2424
    25 #: includes/fastbill-functions.php:35
     25#: includes/fastbill-functions.php:32
    2626msgid "Invalid FastBill credentials supplied"
    2727msgstr ""
    2828
    29 #: includes/fastbill-functions.php:163
     29#: includes/fastbill-functions.php:166
    3030msgid "There was an error creating this customer in FastBill:"
    3131msgstr ""
    3232
    33 #: includes/fastbill-functions.php:164 includes/fastbill-functions.php:216 includes/fastbill-functions.php:382
    34 #: includes/fastbill-functions.php:439 includes/fastbill-functions.php:494 includes/fastbill-functions.php:548
    35 #: includes/fastbill-functions.php:603 includes/fastbill-functions.php:636 includes/fastbill-functions.php:643
    36 #: includes/fastbill-functions.php:680 includes/fastbill-functions.php:735 includes/fastbill-functions.php:788
     33#: includes/fastbill-functions.php:167 includes/fastbill-functions.php:219 includes/fastbill-functions.php:385
     34#: includes/fastbill-functions.php:442 includes/fastbill-functions.php:497 includes/fastbill-functions.php:551
     35#: includes/fastbill-functions.php:606 includes/fastbill-functions.php:639 includes/fastbill-functions.php:646
     36#: includes/fastbill-functions.php:683 includes/fastbill-functions.php:738 includes/fastbill-functions.php:791
    3737msgid "Error: "
    3838msgstr ""
    3939
    40 #: includes/fastbill-functions.php:215
     40#: includes/fastbill-functions.php:218
    4141msgid "There was an error looking up this customer in FastBill:"
    4242msgstr ""
    4343
    44 #: includes/fastbill-functions.php:279
     44#: includes/fastbill-functions.php:282
    4545msgid "Discount used: "
    4646msgstr ""
    4747
    48 #: includes/fastbill-functions.php:312
     48#: includes/fastbill-functions.php:315
    4949msgid "renewal"
    5050msgstr ""
    5151
    52 #: includes/fastbill-functions.php:381
     52#: includes/fastbill-functions.php:384
    5353msgid "There was an error adding the invocie to FastBill:"
    5454msgstr ""
    5555
    56 #: includes/fastbill-functions.php:438 includes/fastbill-functions.php:493
     56#: includes/fastbill-functions.php:441 includes/fastbill-functions.php:496
    5757msgid "There was an error completing invoice in FastBill:"
    5858msgstr ""
    5959
    60 #: includes/fastbill-functions.php:547
     60#: includes/fastbill-functions.php:550
    6161msgid "There was an error canceling an invoice in FastBill:"
    6262msgstr ""
    6363
    64 #: includes/fastbill-functions.php:602
     64#: includes/fastbill-functions.php:605
    6565msgid "There was an error deleting an invoice in FastBill:"
    6666msgstr ""
    6767
    68 #: includes/fastbill-functions.php:679
     68#: includes/fastbill-functions.php:682
    6969msgid "There was an error sending an invoice via FastBill:"
    7070msgstr ""
    7171
    72 #: includes/fastbill-functions.php:734
     72#: includes/fastbill-functions.php:737
    7373msgid "There was an error creating a payment in FastBill:"
    7474msgstr ""
    7575
    76 #: includes/fastbill-functions.php:787
     76#: includes/fastbill-functions.php:790
    7777msgid "There was an error when receiving templates from FastBill:"
    7878msgstr ""
  • edd-fastbill/trunk/readme.txt

    r1590243 r1592803  
    55Requires at least: 4.5
    66Tested up to: 4.7.2
    7 Stable tag: 1.5.0
     7Stable tag: 1.5.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040== Changelog ==
     41
     42= 2017-02-09 1.5.1 =
     43
     44* Fixed: Fatal Error on plugin activation or when the FastBill credentials are not saved
     45* Fixed: Fixed a PHP Notice when no advanced payment gateways is selected
    4146
    4247= 2017-02-04 1.5.0 =
Note: See TracChangeset for help on using the changeset viewer.