Plugin Directory

Changeset 1143052


Ignore:
Timestamp:
04/23/2015 09:20:22 AM (11 years ago)
Author:
eroux
Message:

Updated Tested To

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • badge/trunk/readme.txt

    r981788 r1143052  
    44Tags: snippets, badges, admin, administration, jadb
    55Requires at least: 2.8
    6 Tested up to: 4.0
     6Tested up to: 4.2
    77Stable tag: trunk
    88
  • badges/trunk/readme.txt

    r981790 r1143052  
    33Tags: books, read, reading, admin, administration, jadb
    44Requires at least: 2.8
    5 Tested up to: 4.0
     5Tested up to: 4.2
    66Stable tag: trunk
    77
  • currently-reading/trunk/CurrentlyReading.php

    r981804 r1143052  
    2626    //  @see WP_Widget::widget
    2727    //
    28     function widget($args, $instance) {
     28    function widget( $args, $instance ) {
    2929        $args = wp_parse_args( $args, $this->widget_defaults );
    3030        extract( $args );
     
    3535        $boxshadow = $instance["boxshadow"] ? true : false;
    3636
    37         if ($instance['isbn'] != "") {      // No point in a "Currently Reading" if you aren't, is there?
     37        if ( $instance['isbn'] != "" ) {      // No point in a "Currently Reading" if you aren't, is there?
    3838
    3939            echo $before_widget;
     
    7070    //  @see WP_Widget::update
    7171    //
    72     function update($new_instance, $old_instance) {
     72    function update( $new_instance, $old_instance ) {
    7373        $instance = $old_instance;
    7474        $instance['title'] = strip_tags( $new_instance['title'] );
  • currently-reading/trunk/readme.txt

    r981794 r1143052  
    33Tags: books, read, reading, admin, administration, jadb
    44Requires at least: 2.8
    5 Tested up to: 4.0
     5Tested up to: 4.2
    66Stable tag: trunk
    77
     
    27272. Upload `currently-reading.php` to the `/wp-content/plugins/` directory.
    28283. Activate the plugin through the 'Plugins' menu in WordPress.
    29 4. Use the "Currently Reading" widget.
     294. Use the "Currently Reading" widget (found under Appearance -> Widgets).
    3030
    3131**Upgrade**
Note: See TracChangeset for help on using the changeset viewer.