Skip to content

Commit 5a923fc

Browse files
committed
Updating headers to match proper standards
1 parent 9ca2383 commit 5a923fc

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
<?php // Don't copy this line!
1+
<?php
22
/**
3-
* LifterLMS Private Areas filter examples: https://lifterlms.com/docs/private-areas-filters/
3+
* Customize the Privaate Areas commenting to allow HTML quicktags for admins only.
44
*
5-
* @since 2017-08-11
6-
*/
7-
/**
8-
* customize PA commenting to Allow HTML quicktags for admins only
9-
* @param boolean $bool default HTML status (true)
10-
* @return boolean
5+
* Learn more at: https://lifterlms.com/docs/private-areas-filters/
6+
*
7+
* You can add this recipe to your site by creating a custom plugin
8+
* or using the Code Snippets plugin available for free in the WordPress repository.
9+
* Read this companion documentation for step-by-step directions on either method.
10+
* https://lifterlms.com/docs/adding-custom-code/
1111
*/
1212
function my_llms_pa_html_discussion( $bool ) {
1313
if ( ! is_admin() ) {
1414
return false;
1515
}
1616
return $bool;
1717
}
18-
add_filter( 'llms_pa_html_discussion', 'my_llms_pa_html_discussion' );
18+
add_filter( 'llms_pa_html_discussion', 'my_llms_pa_html_discussion' );

0 commit comments

Comments
 (0)