View Single Post
  #15  
Old 13th February 2016, 18:59
ndbj ndbj is offline
Senior Member
 
Join Date: Dec 2012
Portugal
Posts: 35
Default
Quote:
Originally Posted by Bigjoos View Post
-- oops - i'll post the gifs in an hour or two
Do you still have this?
Thanks in advance

Bump:
Quote:
Originally Posted by Kotafi View Post
the edit button at helpdesk.php results just a white page, could u help me fix this?
in helpdesk.php, change this
PHP Code:
if ($action == "edit")
    {
    
$ticket $_POST['ticket'];
    
    
site_header("Helpdesk"); 
to this
if ($action == "edit")
{
$ticket = $_POST['ticket'];

stdhead("Helpdesk");
Reply With Quote