Code Duplication    Length = 4-4 lines in 2 locations

catalog/admin/includes/classes/phplot.php 2 locations

@@ 1586-1589 (lines=4) @@
1583
			//ImageLine($this->img,($this->xtr($this->plot_max_x)+$this->tick_length),
1584
			//	$y_pixels,$this->xtr($this->plot_max_x)-1,$y_pixels,$this->ndx_tick_color);
1585
1586
			if ($this->draw_x_grid == 1) {
1587
				ImageLine($this->img,$x_pixels,$this->plot_area[1],
1588
					$x_pixels,$this->plot_area[3], $this->ndx_light_grid_color);
1589
			}
1590
1591
			if ($this->x_datalabel_angle == 90) {  //Vertical Code Submitted by Marlin Viss
1592
 			   ImageStringUp($this->img, $this->small_font,
@@ 1653-1656 (lines=4) @@
1650
		$y_pixels = $this->ytr($which_ypos);
1651
1652
		//Lines Across the Plot Area
1653
		if ($this->draw_y_grid == 1) {
1654
			ImageLine($this->img,$this->plot_area[0]+1,$y_pixels,
1655
				$this->plot_area[2]-1,$y_pixels,$this->ndx_light_grid_color);
1656
		}
1657
1658
		//Ticks to the Left of the Plot Area
1659
		if (($this->vert_tick_position == "plotleft") || ($this->vert_tick_position == "both") ) {