Preview issue in "View Issues"

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
LewisR
Posts: 5
Joined: 05 Jan 2014, 07:02
Location: New York, USA
Contact:

Preview issue in "View Issues"

Post by LewisR »

Following onto alphaed's work in this thread, I realized that I was missing the color block placeholder in the column header row above the +/- buttons.

This is easily added by tweaking view_all_inc.php, near line 191 (version 1.2.18), changing:

Code: Select all

<?php
		$t_title_function = 'print_column_title';
		foreach( $t_columns as $t_column ) {
			//if ($t_column != "description"){
				helper_call_custom_function( $t_title_function, array( $t_column ) );
			//}
			
		}
?>

</tr>

<?php # -- Spacer row -- ?>
to:

Code: Select all

<?php
		$t_title_function = 'print_column_title';
		foreach( $t_columns as $t_column ) {
			//if ($t_column != "description"){
				helper_call_custom_function( $t_title_function, array( $t_column ) );
			//}
			
		}
?>
		<! -- Need this for column header above +/- icons -->
		<td>
		</td>
</tr>

<?php # -- Spacer row -- ?>
Now, there isn't a missing chunk out of the header column. :wink:
Lewis
------
Lewis G Rosenthal, CNA, CLP, CLE, CWTS, EA
Rosenthal & Rosenthal, LLC www.2rosenthals.com
visit my IT blog www.2rosenthals.net/wordpress
Post Reply