Changeset 1003661
- Timestamp:
- 10/08/2014 09:40:01 AM (11 years ago)
- Location:
- fullscreen-galleria
- Files:
-
- 4 added
- 1 deleted
- 2 edited
- 13 copied
-
tags/1.4.9 (copied) (copied from fullscreen-galleria/trunk)
-
tags/1.4.9/assets (added)
-
tags/1.4.9/assets/icon.svg (added)
-
tags/1.4.9/fs-map-b.png (copied) (copied from fullscreen-galleria/trunk/fs-map-b.png)
-
tags/1.4.9/fs-map.png (copied) (copied from fullscreen-galleria/trunk/fs-map.png)
-
tags/1.4.9/galleria-1.2.9.min.js (deleted)
-
tags/1.4.9/galleria-1.3.5.min.js (copied) (copied from fullscreen-galleria/trunk/galleria-1.3.5.min.js)
-
tags/1.4.9/galleria-fs-b.css (copied) (copied from fullscreen-galleria/trunk/galleria-fs-b.css)
-
tags/1.4.9/galleria-fs-icons.svg (copied) (copied from fullscreen-galleria/trunk/galleria-fs-icons.svg)
-
tags/1.4.9/galleria-fs-theme.js (copied) (copied from fullscreen-galleria/trunk/galleria-fs-theme.js)
-
tags/1.4.9/galleria-fs-w.css (copied) (copied from fullscreen-galleria/trunk/galleria-fs-w.css)
-
tags/1.4.9/galleria-fs.css (copied) (copied from fullscreen-galleria/trunk/galleria-fs.css)
-
tags/1.4.9/galleria-fs.js (copied) (copied from fullscreen-galleria/trunk/galleria-fs.js)
-
tags/1.4.9/galleria-fs.php (copied) (copied from fullscreen-galleria/trunk/galleria-fs.php) (9 diffs)
-
tags/1.4.9/make-icons.sh (copied) (copied from fullscreen-galleria/trunk/make-icons.sh)
-
tags/1.4.9/readme.txt (copied) (copied from fullscreen-galleria/trunk/readme.txt) (2 diffs)
-
trunk/assets (added)
-
trunk/assets/icon.svg (added)
-
trunk/galleria-fs.php (modified) (9 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fullscreen-galleria/tags/1.4.9/galleria-fs.php
r919149 r1003661 5 5 Plugin URI: http://torturedmind.org/ 6 6 Description: Fullscreen gallery for Wordpress 7 Version: 1.4. 77 Version: 1.4.9 8 8 Author: Petri Damstén 9 9 Author URI: http://torturedmind.org/ … … 12 12 ******************************************************************************/ 13 13 14 $fsg_ver = '1.4. 7';14 $fsg_ver = '1.4.9'; 15 15 $fsg_db_key = 'fsg_plugin_settings'; 16 16 … … 535 535 536 536 if (!empty($postid)) { 537 $photos = &get_children(array('post_parent' => $postid, 'post_status' => 'inherit',537 $photos = get_children(array('post_parent' => $postid, 'post_status' => 'inherit', 538 538 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 539 539 'orderby' => $orderby)); 540 540 } else { 541 541 if (!empty($include)) { 542 $photos = &get_posts(array('post_type' => 'attachment',542 $photos = get_posts(array('post_type' => 'attachment', 543 543 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby, 544 544 'include' => $include)); 545 545 } else { 546 $photos = &get_children(array('post_parent' => $post->ID, 'post_status' => 'inherit',546 $photos = get_children(array('post_parent' => $post->ID, 'post_status' => 'inherit', 547 547 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 548 548 'orderby' => $orderby)); … … 580 580 581 581 if (!empty($postid)) { 582 $photos = &get_children(array('post_parent' => $postid, 'post_status' => 'inherit',582 $photos = get_children(array('post_parent' => $postid, 'post_status' => 'inherit', 583 583 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 584 584 'orderby' => $orderby)); … … 591 591 } else { 592 592 if (!empty($include)) { 593 $photos = &get_posts(array('post_type' => 'attachment',593 $photos = get_posts(array('post_type' => 'attachment', 594 594 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby, 595 595 'include' => $include)); … … 598 598 $imgid = 0; 599 599 } else { 600 $photos = &get_children(array('post_parent' => $post->ID, 'post_status' => 'inherit',600 $photos = get_children(array('post_parent' => $post->ID, 'post_status' => 'inherit', 601 601 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 602 602 'orderby' => $orderby)); … … 880 880 $this->share_img_url = $val['permalink']; 881 881 $i = 0; 882 $div = '<div class="galleria-layeritem sharedaddy sd-sharing-enabled">'; 882 $div = '<div style="padding-bottom: 20px;"></div>'; # Give room for the sharing buttons 883 $div .= '<div class="galleria-layeritem sharedaddy sd-sharing-enabled">'; 883 884 $div .= '<div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing">'; 884 885 $div .= '<div class="sd-content">'; … … 946 947 947 948 #error_log('----------------------------------------------------------'); 949 #error_log($content); 948 950 $links = $this->links($content); 949 951 #$this->ob_log($links); … … 966 968 #error_log('* id: '.$id); 967 969 if ($id != NULL) { 968 $photos = &get_posts(array('post_type' => 'attachment',970 $photos = get_posts(array('post_type' => 'attachment', 969 971 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID', 970 972 'include' => $id)); -
fullscreen-galleria/tags/1.4.9/readme.txt
r919149 r1003661 6 6 Tags: galleria, gallery, photography, images 7 7 Requires at least: 3.6 8 Tested up to: 3.9.18 Tested up to: 4.0 9 9 Stable tag: trunk 10 10 License: MIT … … 87 87 88 88 == Changelog == 89 = 1.4.9 = 90 * More space for the sharing icons. 91 * Add plugin icon 92 93 = 1.4.8 = 94 * Remove more strict warnings. 95 89 96 = 1.4.7 = 90 97 * Work with Jetpack 3.0 share buttons. -
fullscreen-galleria/trunk/galleria-fs.php
r919149 r1003661 5 5 Plugin URI: http://torturedmind.org/ 6 6 Description: Fullscreen gallery for Wordpress 7 Version: 1.4. 77 Version: 1.4.9 8 8 Author: Petri Damstén 9 9 Author URI: http://torturedmind.org/ … … 12 12 ******************************************************************************/ 13 13 14 $fsg_ver = '1.4. 7';14 $fsg_ver = '1.4.9'; 15 15 $fsg_db_key = 'fsg_plugin_settings'; 16 16 … … 535 535 536 536 if (!empty($postid)) { 537 $photos = &get_children(array('post_parent' => $postid, 'post_status' => 'inherit',537 $photos = get_children(array('post_parent' => $postid, 'post_status' => 'inherit', 538 538 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 539 539 'orderby' => $orderby)); 540 540 } else { 541 541 if (!empty($include)) { 542 $photos = &get_posts(array('post_type' => 'attachment',542 $photos = get_posts(array('post_type' => 'attachment', 543 543 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby, 544 544 'include' => $include)); 545 545 } else { 546 $photos = &get_children(array('post_parent' => $post->ID, 'post_status' => 'inherit',546 $photos = get_children(array('post_parent' => $post->ID, 'post_status' => 'inherit', 547 547 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 548 548 'orderby' => $orderby)); … … 580 580 581 581 if (!empty($postid)) { 582 $photos = &get_children(array('post_parent' => $postid, 'post_status' => 'inherit',582 $photos = get_children(array('post_parent' => $postid, 'post_status' => 'inherit', 583 583 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 584 584 'orderby' => $orderby)); … … 591 591 } else { 592 592 if (!empty($include)) { 593 $photos = &get_posts(array('post_type' => 'attachment',593 $photos = get_posts(array('post_type' => 'attachment', 594 594 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby, 595 595 'include' => $include)); … … 598 598 $imgid = 0; 599 599 } else { 600 $photos = &get_children(array('post_parent' => $post->ID, 'post_status' => 'inherit',600 $photos = get_children(array('post_parent' => $post->ID, 'post_status' => 'inherit', 601 601 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 602 602 'orderby' => $orderby)); … … 880 880 $this->share_img_url = $val['permalink']; 881 881 $i = 0; 882 $div = '<div class="galleria-layeritem sharedaddy sd-sharing-enabled">'; 882 $div = '<div style="padding-bottom: 20px;"></div>'; # Give room for the sharing buttons 883 $div .= '<div class="galleria-layeritem sharedaddy sd-sharing-enabled">'; 883 884 $div .= '<div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing">'; 884 885 $div .= '<div class="sd-content">'; … … 946 947 947 948 #error_log('----------------------------------------------------------'); 949 #error_log($content); 948 950 $links = $this->links($content); 949 951 #$this->ob_log($links); … … 966 968 #error_log('* id: '.$id); 967 969 if ($id != NULL) { 968 $photos = &get_posts(array('post_type' => 'attachment',970 $photos = get_posts(array('post_type' => 'attachment', 969 971 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID', 970 972 'include' => $id)); -
fullscreen-galleria/trunk/readme.txt
r919149 r1003661 6 6 Tags: galleria, gallery, photography, images 7 7 Requires at least: 3.6 8 Tested up to: 3.9.18 Tested up to: 4.0 9 9 Stable tag: trunk 10 10 License: MIT … … 87 87 88 88 == Changelog == 89 = 1.4.9 = 90 * More space for the sharing icons. 91 * Add plugin icon 92 93 = 1.4.8 = 94 * Remove more strict warnings. 95 89 96 = 1.4.7 = 90 97 * Work with Jetpack 3.0 share buttons.
Note: See TracChangeset
for help on using the changeset viewer.