#92 Update print.php

This commit is contained in:
Mike Koch 2015-01-12 23:08:32 -05:00
parent 6ad5fc39b6
commit 9ce5698c2e

View File

@ -1,7 +1,7 @@
<?php
/*******************************************************************************
* Title: Help Desk Software HESK
* Version: 2.5.5 from 5th August 2014
* Version: 2.6.0 beta 1 from 30th December 2014
* Author: Klemen Stirn
* Website: http://www.hesk.com
********************************************************************************
@ -49,9 +49,13 @@ $trackingID = hesk_cleanID() or die("$hesklang[int_error]: $hesklang[no_trackID]
/* Connect to database */
hesk_dbConnect();
/* Verify email address match if needed */
// Perform additional checks for customers
if ( empty($_SESSION['id']) )
{
// Are we in maintenance mode?
hesk_check_maintenance();
// Verify email address match
hesk_verifyEmailMatch($trackingID);
}