Plugin Directory

Changeset 948364


Ignore:
Timestamp:
07/14/2014 09:53:18 PM (12 years ago)
Author:
ashdurham
Message:

Fix to date output after save and styling updates

Location:
invoice-king-pro
Files:
102 added
4 edited

Legend:

Unmodified
Added
Removed
  • invoice-king-pro/trunk/css/invoicekingpro-styles.css

    r926784 r948364  
    112112}
    113113
     114#invkp_invoice .inv_columns table.styled tbody td {
     115    position: relative;
     116}
     117
    114118#invkp_invoice.default .inv_content_2 {
    115119    margin-top: 20px;
     
    126130}
    127131
    128 .remove_invkp_row {position: absolute; right: 0; top: 0;}
     132.remove_invkp_row {position: absolute; right: 0; top: 50%; margin-top: -8px;}
    129133
    130134.invkp_invoice_attachments_remove_file {vertical-align: middle;}
  • invoice-king-pro/trunk/includes/admin_area.php

    r927054 r948364  
    10261026        $output['invkp_postcode'] = get_post_meta( $id, 'invkp_postcode' );
    10271027        if (!isset($output['invkp_postcode'][0])) $output['invkp_postcode'][0] = get_option('invkp_postcode');
    1028         $output['invkp_date'] = (get_post_meta( $id, 'invkp_date' ) ? get_post_meta( $id, 'invkp_date', get_the_date() ) : array(get_the_date()));
    1029         $output['invkp_due_date'] = (get_post_meta( $id, 'invkp_due_date' ) ? get_post_meta( $id, 'invkp_due_date' ) : array(''));
     1028        $output['invkp_date'][0] = (get_post_meta( $id, 'invkp_date' ) ? get_post_meta( $id, 'invkp_date', get_the_date() ) : array(get_the_date()));
     1029        $output['invkp_due_date'][0] = (get_post_meta( $id, 'invkp_due_date' ) ? get_post_meta( $id, 'invkp_due_date' ) : array(''));
    10301030        $output['invkp_invoice_no_label'] = get_post_meta( $id, 'invkp_invoice_no_label' );
    10311031        if (!isset($output['invkp_invoice_no_label'][0])) $output['invkp_invoice_no_label'][0] = get_option('invkp_invoice_no_label');
  • invoice-king-pro/trunk/invoicekingpro.php

    r927054 r948364  
    44    Plugin URI: http://kingpro.me/plugins/invoice-king-pro/
    55    Description: Invoice King Pro allows you to create, send and manage invoices for whatever purpose. If AdKingPro is installed as well, automatically generate invoices for revenue outputs.
    6     Version: 1.1.5
     6    Version: 1.1.6
    77    Author: Ash Durham
    88    Author URI: http://durham.net.au/
     
    2828
    2929    global $invkp_db_version;
    30     $invkp_db_version = "1.1.5";
     30    $invkp_db_version = "1.1.6";
    3131    $invkp_safe_theme = '1.2';
    3232   
  • invoice-king-pro/trunk/readme.txt

    r927054 r948364  
    44Tags: invoice, invoicing, pdf, clients, revenue, money, themes, theme, dollars, paid, payment, receipt, clients, email
    55Requires at least: 3.0.1
    6 Tested up to: 3.9
    7 Stable tag: 1.1.5
     6Tested up to: 3.9.1
     7Stable tag: 1.1.6
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    115115== Changelog ==
    116116
     117= 1.1.6 =
     118* Fix to date output after save
     119* Styling updates
     120
    117121= 1.1.5 =
    118122* Fix to missing invoice_type variable in email
     
    189193== Upgrade Notice ==
    190194
     195= 1.1.6 =
     196* Fix to date output after save
     197* Styling updates
     198
    191199= 1.1.5 =
    192200* Fix to missing invoice_type variable in email
Note: See TracChangeset for help on using the changeset viewer.