Plugin Directory

Changeset 2258562


Ignore:
Timestamp:
03/10/2020 11:20:16 PM (6 years ago)
Author:
MrWiblog
Message:

1.4.3 Fixed styling of pagination links. Tested with WordPress 5.3.2.

Location:
database-browser
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • database-browser/trunk/database-browser.php

    r1584694 r2258562  
    66  Description: Easily browse the data in your database, and download in CSV, XML, SQL and JSON format
    77  Author: Chris Taylor
    8   Version: 1.4
     8  Version: 1.4.3
    99  Author URI: http://www.stillbreathing.co.uk/
    1010 */
     
    1818    $register->slug = "databasebrowser";
    1919    $register->name = "Database Browser";
    20     $register->version = "1.4.1";
     20    $register->version = "1.4.3";
    2121    $register->developer = "Chris Taylor";
    2222    $register->homepage = "http://www.stillbreathing.co.uk";
     
    4040         * @since 1.0
    4141         */
    42         var $version = "1.4.1";
     42        var $version = "1.4.3";
    4343
    4444        /**
  • database-browser/trunk/pagination.class.php

    r1584694 r2258562  
    6464                    ));
    6565           
     66            // fix styling of pagination links
     67            $this->pageList = str_replace( "page-numbers", "button page-numbers", $this->pageList );
     68
    6669            $this->links = '
    6770            <div class="tablenav">
    6871            <div class="tablenav-pages">
    69             <span class="displaying-num">Displaying ' . $this->view . ' of ' . $this->count . '</span>
     72                <span class="displaying-num">Displaying ' . $this->view . ' of ' . $this->count . '</span>
     73                <span class="pagination-links">
    7074                ' . $this->pageList . '
     75                </span>
    7176            </div>
    7277            </div>
  • database-browser/trunk/readme.txt

    r1584694 r2258562  
    44Tags: database, table, browse, query, download, export
    55Requires at least: 3.0.1
    6 Tested up to: 4.7
    7 Stable tag: 1.4.2
     6Tested up to: 5.3.2
     7Stable tag: 1.4.3
    88
    99Easily query and browse tables in your database, and download in XML, JSON, CSV, SQL and HTML format
     
    3939
    4040== Changelog ==
     41
     42= 1.4.3 (2020/03/10) =
     43
     44Fixed styling of pagination links. Tested with WordPress 5.3.2.
    4145
    4246= 1.4.2 (2017/01/29) =
Note: See TracChangeset for help on using the changeset viewer.