Plugin Directory

Changeset 2319803


Ignore:
Timestamp:
06/07/2020 02:34:15 PM (6 years ago)
Author:
Mosterd3d
Message:

tagging version 5.2.1

Location:
dd-lastviewed
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • dd-lastviewed/tags/5.2.1/css/style.css

    r2310177 r2319803  
    1 .lastViewedList{list-style-type:none;margin:0}.lastViewedList li.clearfix{*zoom:1}.lastViewedList li.clearfix:before,.lastViewedList li.clearfix:after{content:" ";display:table}.lastViewedList li.clearfix:after{clear:both}.lastViewedThumb{float:left;margin:6px 6px 6px 0}.widget .lastViewedThumb:hover{text-decoration:none;box-shadow:none}.lastViewedThumb img{width:48px;height:auto}.lastViewedTitle{font-weight:bold}.lastViewedExcerpt{margin-bottom:18px;display:block}.lastViewedExcerpt .more-link{display:none !important}/*# sourceMappingURL=style.css.map */
     1.lastViewedList{list-style-type:none;margin:0}.lastViewedList li.lastViewedItem{list-style-type:none}.lastViewedList li.clearfix{*zoom:1}.lastViewedList li.clearfix:before,.lastViewedList li.clearfix:after{content:" ";display:table}.lastViewedList li.clearfix:after{clear:both}.lastViewedThumb{float:left;margin:6px 6px 6px 0}.widget .lastViewedThumb:hover{text-decoration:none;box-shadow:none}.lastViewedThumb img{width:48px;height:auto}.lastViewedTitle{font-weight:bold}.lastViewedExcerpt{margin-bottom:18px;display:block}.lastViewedExcerpt .more-link{display:none !important}/*# sourceMappingURL=style.css.map */
  • dd-lastviewed/tags/5.2.1/last-viewed.php

    r2310667 r2319803  
    22/*
    33Plugin Name: DD Last Viewed
    4 Version: 5.2
     4Version: 5.2.1
    55Plugin URI: http://wouterdijkstra.com
    66Description: Shows the users recently viewed/visited Posts, Pages, Custom Types and even Terms in a widget.
     
    462462        $this->all_lv_widgets = get_option(self::widget_options_selector);
    463463        $thisWidget = $this->all_lv_widgets[$this->widget_id];
    464         $this->selectedTypesTerms = $thisWidget['selection'] ? $thisWidget['selection'] : array();
    465         $this->ajaxLoad = $thisWidget['lastViewed_ajaxLoad'] ? $thisWidget['lastViewed_ajaxLoad'] : 0;
    466         $this->cookieByJs =  $thisWidget['lastViewed_cookieByJs'] ? $thisWidget['lastViewed_cookieByJs'] : 0;
    467         $show_max = $thisWidget['lastViewed_total'] ? $thisWidget['lastViewed_total'] : -1;
     464        $this->selectedTypesTerms = isset($thisWidget['selection']) ? $thisWidget['selection'] : array();
     465        $this->ajaxLoad = isset($thisWidget['lastViewed_ajaxLoad']) ? $thisWidget['lastViewed_ajaxLoad'] : 0;
     466        $this->cookieByJs = isset($thisWidget['lastViewed_cookieByJs']) ? $thisWidget['lastViewed_cookieByJs'] : 0;
     467        $show_max = isset($thisWidget['lastViewed_total']) ? $thisWidget['lastViewed_total'] : -1;
    468468
    469469        $idList = array_reverse($this->getCookieList($this::cookiePrefix . $this->widget_id));
  • dd-lastviewed/tags/5.2.1/readme.txt

    r2310667 r2319803  
    55Requires at least: 3.3
    66Tested up to: 5.4.1
    7 Stable tag: 5.2
     7Stable tag: 5.2.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5858
    5959== Changelog ==
     60
     61= 5.2.1 =
     62
     63* Fix devmode errors "Undefined index"
     64* Update CSS
    6065
    6166= 5.2 =
  • dd-lastviewed/trunk/css/style.css

    r2310177 r2319803  
    1 .lastViewedList{list-style-type:none;margin:0}.lastViewedList li.clearfix{*zoom:1}.lastViewedList li.clearfix:before,.lastViewedList li.clearfix:after{content:" ";display:table}.lastViewedList li.clearfix:after{clear:both}.lastViewedThumb{float:left;margin:6px 6px 6px 0}.widget .lastViewedThumb:hover{text-decoration:none;box-shadow:none}.lastViewedThumb img{width:48px;height:auto}.lastViewedTitle{font-weight:bold}.lastViewedExcerpt{margin-bottom:18px;display:block}.lastViewedExcerpt .more-link{display:none !important}/*# sourceMappingURL=style.css.map */
     1.lastViewedList{list-style-type:none;margin:0}.lastViewedList li.lastViewedItem{list-style-type:none}.lastViewedList li.clearfix{*zoom:1}.lastViewedList li.clearfix:before,.lastViewedList li.clearfix:after{content:" ";display:table}.lastViewedList li.clearfix:after{clear:both}.lastViewedThumb{float:left;margin:6px 6px 6px 0}.widget .lastViewedThumb:hover{text-decoration:none;box-shadow:none}.lastViewedThumb img{width:48px;height:auto}.lastViewedTitle{font-weight:bold}.lastViewedExcerpt{margin-bottom:18px;display:block}.lastViewedExcerpt .more-link{display:none !important}/*# sourceMappingURL=style.css.map */
  • dd-lastviewed/trunk/last-viewed.php

    r2310667 r2319803  
    22/*
    33Plugin Name: DD Last Viewed
    4 Version: 5.2
     4Version: 5.2.1
    55Plugin URI: http://wouterdijkstra.com
    66Description: Shows the users recently viewed/visited Posts, Pages, Custom Types and even Terms in a widget.
     
    462462        $this->all_lv_widgets = get_option(self::widget_options_selector);
    463463        $thisWidget = $this->all_lv_widgets[$this->widget_id];
    464         $this->selectedTypesTerms = $thisWidget['selection'] ? $thisWidget['selection'] : array();
    465         $this->ajaxLoad = $thisWidget['lastViewed_ajaxLoad'] ? $thisWidget['lastViewed_ajaxLoad'] : 0;
    466         $this->cookieByJs =  $thisWidget['lastViewed_cookieByJs'] ? $thisWidget['lastViewed_cookieByJs'] : 0;
    467         $show_max = $thisWidget['lastViewed_total'] ? $thisWidget['lastViewed_total'] : -1;
     464        $this->selectedTypesTerms = isset($thisWidget['selection']) ? $thisWidget['selection'] : array();
     465        $this->ajaxLoad = isset($thisWidget['lastViewed_ajaxLoad']) ? $thisWidget['lastViewed_ajaxLoad'] : 0;
     466        $this->cookieByJs = isset($thisWidget['lastViewed_cookieByJs']) ? $thisWidget['lastViewed_cookieByJs'] : 0;
     467        $show_max = isset($thisWidget['lastViewed_total']) ? $thisWidget['lastViewed_total'] : -1;
    468468
    469469        $idList = array_reverse($this->getCookieList($this::cookiePrefix . $this->widget_id));
  • dd-lastviewed/trunk/readme.txt

    r2310667 r2319803  
    55Requires at least: 3.3
    66Tested up to: 5.4.1
    7 Stable tag: 5.2
     7Stable tag: 5.2.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5858
    5959== Changelog ==
     60
     61= 5.2.1 =
     62
     63* Fix devmode errors "Undefined index"
     64* Update CSS
    6065
    6166= 5.2 =
Note: See TracChangeset for help on using the changeset viewer.