Plugin Directory

Changeset 2088792


Ignore:
Timestamp:
05/16/2019 04:06:33 AM (7 years ago)
Author:
designwall
Message:

rerelease version 1.0.4

Location:
dw-notifications
Files:
49 added
4 edited

Legend:

Unmodified
Added
Removed
  • dw-notifications/trunk/dw-notifications.php

    r2021763 r2088792  
    55 *  Author: DesignWall
    66 *  Author URI: http://www.designwall.com
    7  *  Version: 1.0.3
     7 *  Version: 1.0.4
    88 *  Text Domain: dw-notifications
    99 */
     
    1616class DW_Notifications{
    1717    public function __construct() {
    18         $this->version = '1.0.3';
     18        $this->version = '1.0.4';
    1919        $this->define_constants();
    2020        $this->includes();
  • dw-notifications/trunk/inc/integrations/dwqa/loader.php

    r2012557 r2088792  
    169169                            $notif = array('title'=>$title, 'link' => get_permalink($question_id). '#comment-' . $comment_id, 'custom_type' => 'replied');
    170170
    171                             dwnotif_add_user_notify($comment_value->user_id, $notif);
     171                            dwnotif_add_notification($comment_value->user_id, $notif);
    172172                        }
    173173                    }
  • dw-notifications/trunk/readme.txt

    r2021763 r2088792  
    33Tags: alert, bar, counter, notification, notification bar, mobile, jquery, plugin, foobar
    44Requires at least: 3.0.1
    5 Tested up to: 5.0.3
    6 Stable tag: 1.0.3
     5Tested up to: 5.2
     6Stable tag: 1.0.4
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    5858== Changelog ==
    5959
     60= 1.0.4 =
     61
     62* Fix integration with DWQA comment
     63
    6064= 1.0.3 =
    6165
  • dw-notifications/trunk/templates/default/notification-popup-item.php

    r2012557 r2088792  
    33$notification_time = strtotime($notification->post_date);
    44$type = get_post_meta($notification_id, 'dw_notification_type', true);
    5 $custom_type = get_post_meta($notification_id, 'dw_notification_type', true);
     5$custom_type = get_post_meta($notification_id, 'dw_notification_custom_type', true);
    66
    77?>
Note: See TracChangeset for help on using the changeset viewer.