Plugin Directory

Changeset 870535


Ignore:
Timestamp:
03/06/2014 11:36:45 AM (12 years ago)
Author:
kjbenk
Message:

Fixes minor bug.

Location:
show-stock-quotes/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • show-stock-quotes/trunk/readme.txt

    r870528 r870535  
    3131== Changelog ==
    3232
     33= 1.4.1 =
     34-   Fixed minor bug
     35
    3336= 1.4 =
    3437-   Option to change price color from normal (same color as ticker) to same color as change (green or red).
  • show-stock-quotes/trunk/show_stock_quotes.php

    r870528 r870535  
    44Plugin URI: http://kylebenkapps.com/wordpress-plugins/
    55Description: Show stock quotes updated in real-time.
    6 Version: 1.4
     6Version: 1.4.1
    77Author: Kyle Benk
    88Author URI: http://kylebenkapps.com
     
    188188       
    189189        $passed_data = array(
    190             'out'                   => $out,
     190            'out'                   => isset($out) ? $out : array(),
    191191            'quote_display_color'   => $ticker_info['quote_display_color']
    192192        );
     
    198198        //}
    199199       
    200         return $out;
     200        return isset($out) ? $out : array();
    201201    }
    202202}
Note: See TracChangeset for help on using the changeset viewer.