Changeset 9868 for trunk/wp-admin/includes/template.php
- Timestamp:
- 11/25/2008 02:41:54 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r9835 r9868 1918 1918 * @param unknown_type $checkbox 1919 1919 */ 1920 function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true ) {1920 function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true, $from_ajax = false ) { 1921 1921 global $comment, $post; 1922 1922 $comment = get_comment( $comment_id ); … … 2008 2008 ( ( ('approve' == $action || 'unapprove' == $action) && 2 === $i ) || 1 === $i ) ? $sep = '' : $sep = ' | '; 2009 2009 2010 // Reply and quickedit need a hide-if-no-js span 2011 if ( 'reply' == $action || 'quickedit' == $action)2010 // Reply and quickedit need a hide-if-no-js span when not added with ajax 2011 if ( ('reply' == $action || 'quickedit' == $action) && ! $from_ajax ) 2012 2012 $action .= ' hide-if-no-js'; 2013 2013
Note: See TracChangeset
for help on using the changeset viewer.