Plugin Directory

Changeset 1433822


Ignore:
Timestamp:
06/09/2016 12:35:58 PM (10 years ago)
Author:
reenushomy
Message:

Edit page display bug fixes

Location:
monthly-data-sheets/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • monthly-data-sheets/trunk/css/admin-styles.css

    r1424176 r1433822  
    99    margin-bottom: 2em;
    1010}
     11
     12.post-type-datasheet #post-body-content .wp-editor-wrap #wp-content-editor-container .mce-edit-area,
     13.post-type-datasheet textarea#content {
     14    height: 200px !important;
     15    overflow-x: hidden;
     16    overflow-y: auto;
     17}
  • monthly-data-sheets/trunk/lib/functions.php

    r1424176 r1433822  
    6161            foreach ($columns as $column_id => $column) {
    6262                $column_label = is_array($column) ? $column['label'] : $column;
    63                 $column_name = is_array($row) ? $column['name'] : $column;
     63                $column_name = is_array($column) ? $column['name'] : $column;
    6464
    6565                /* First entry will be the column name */
  • monthly-data-sheets/trunk/lib/meta.php

    r1428503 r1433822  
    3232
    3333    public function init_metabox() {
    34 
    3534        add_action('add_meta_boxes', array($this, 'add_metabox'));
    3635        add_action('save_post', array($this, 'save_metabox'), 10, 2);
  • monthly-data-sheets/trunk/monthly-data-sheets.php

    r1424194 r1433822  
    44 * Plugin Name: Monthly Data Sheets
    55 * Description: This plugin provides an admin interface to create monthly data sheets. The front end interface provides option to edit and view data sheets in each month.
    6  * Version: 1.0.0
     6 * Version: 1.0.1
    77 * Author: Reenu Shomy K
    88 * License: GPL2
  • monthly-data-sheets/trunk/readme.txt

    r1424206 r1433822  
    6767= 1.0.0 =
    6868* Initial Release
     69
     70== 1.0.1
     71* Edit page display bug fix
Note: See TracChangeset for help on using the changeset viewer.