justintadlock / cleaner-gallery

Official repository for the Cleaner Gallery WordPress plugin.
GNU General Public License v2.0
23 stars 11 forks source link

Missing closing comment slash #5

Open schilke opened 10 years ago

schilke commented 10 years ago

Hi Justin,

I could be wrong as I didn't check any functionality, but while exploring the code I've noticed that the closing trailing slash of the initial comment in inc/default-filters.php seems to be missing. (Line 11)

<?php
/**
 * Sets up custom filters for the plugin's output, particularly filters on the [gallery] shortcode output that 
 * are custom to this plugin.
 *
 * @package   CleanerGallery
 * @author    Justin Tadlock <justin@justintadlock.com>
 * @copyright Copyright (c) 2008 - 2014, Justin Tadlock
 * @link      http://themehybrid.com/plugins/cleaner-gallery
 * @license   http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 *

/* Filter the gallery images with user options. */
add_filter( 'cleaner_gallery_image', 'cleaner_gallery_plugin_gallery_image', 10, 4 );
justintadlock commented 10 years ago

It's closed on line 13. Nevertheless, it's still annoying just looking at it. I'll add this to the next update.

schilke commented 10 years ago

Oh you're right - I've just been a bit irritated by Sublime Text making a pink block out of the complete comment lol