Changeset 2319803
- Timestamp:
- 06/07/2020 02:34:15 PM (6 years ago)
- Location:
- dd-lastviewed
- Files:
-
- 6 edited
- 1 copied
-
tags/5.2.1 (copied) (copied from dd-lastviewed/trunk)
-
tags/5.2.1/css/style.css (modified) (1 diff)
-
tags/5.2.1/last-viewed.php (modified) (2 diffs)
-
tags/5.2.1/readme.txt (modified) (2 diffs)
-
trunk/css/style.css (modified) (1 diff)
-
trunk/last-viewed.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
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 2 2 /* 3 3 Plugin Name: DD Last Viewed 4 Version: 5.2 4 Version: 5.2.1 5 5 Plugin URI: http://wouterdijkstra.com 6 6 Description: Shows the users recently viewed/visited Posts, Pages, Custom Types and even Terms in a widget. … … 462 462 $this->all_lv_widgets = get_option(self::widget_options_selector); 463 463 $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; 468 468 469 469 $idList = array_reverse($this->getCookieList($this::cookiePrefix . $this->widget_id)); -
dd-lastviewed/tags/5.2.1/readme.txt
r2310667 r2319803 5 5 Requires at least: 3.3 6 6 Tested up to: 5.4.1 7 Stable tag: 5.2 7 Stable tag: 5.2.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 58 58 59 59 == Changelog == 60 61 = 5.2.1 = 62 63 * Fix devmode errors "Undefined index" 64 * Update CSS 60 65 61 66 = 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 2 2 /* 3 3 Plugin Name: DD Last Viewed 4 Version: 5.2 4 Version: 5.2.1 5 5 Plugin URI: http://wouterdijkstra.com 6 6 Description: Shows the users recently viewed/visited Posts, Pages, Custom Types and even Terms in a widget. … … 462 462 $this->all_lv_widgets = get_option(self::widget_options_selector); 463 463 $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; 468 468 469 469 $idList = array_reverse($this->getCookieList($this::cookiePrefix . $this->widget_id)); -
dd-lastviewed/trunk/readme.txt
r2310667 r2319803 5 5 Requires at least: 3.3 6 6 Tested up to: 5.4.1 7 Stable tag: 5.2 7 Stable tag: 5.2.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 58 58 59 59 == Changelog == 60 61 = 5.2.1 = 62 63 * Fix devmode errors "Undefined index" 64 * Update CSS 60 65 61 66 = 5.2 =
Note: See TracChangeset
for help on using the changeset viewer.