Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - feline

#1
SimpleDesk Discussion / Move post and PM
April 07, 2010, 01:56:01 PM
When I move a post from user YYZ to the ticket system, the user get a PM with to MY name  :o
See attached image

Fel
#2
SimpleDesk Discussion / Problem with AJAX requests
April 06, 2010, 06:19:56 AM
On change the ticked details (Privacy, Urgency) I have always the error:
Your session timed out while posting.  Please go back and try again.
I have debug that, and see that the $_POST array is empty ... see attached image.

Fel
#3
SimpleDesk Discussion / Bug on Admin section
April 05, 2010, 02:25:56 PM
On load the Admin page, the variable $context['html_headers'] is cleared.
To fix that change

// Load some extra CSS
$context['html_headers'] = '
<link rel="stylesheet" type="text/css" href="' . $settings['default_theme_url'] . '/css/helpdesk_admin.css" />


to

// Load some extra CSS
$context['html_headers'] .= '
<link rel="stylesheet" type="text/css" href="' . $settings['default_theme_url'] . '/css/helpdesk_admin.css" />


Fel