- Sep 28, 2015
-
-
Peter Rotich authored
i18n: Use horizontal, alt tabs for translatable content tabs Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Peter Rotich authored
orgs: Add ticket sharing feature Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
-
- Sep 26, 2015
-
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
This feature allows (by option) an organization to allow its members to see tickets from other members. It can be used beside or instead of the automated collaboration feature. Now, collaborators retain access to tickets on which they participate; however, sharing can be used to enable access to other tickets owned by their organization.
-
Jared Hancock authored
-
- Sep 25, 2015
-
-
Jared Hancock authored
Conflicts: WHATSNEW.md include/class.ticket.php include/class.topic.php include/staff/faq-view.inc.php include/staff/helptopics.inc.php
-
Peter Rotich authored
Fix for issue #2557 Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Peter Rotich authored
Fix issues deploying with PHP 5.6 Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Peter Rotich authored
db: Forbid static zones like 'CDT' Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Peter Rotich authored
Send header information before output. Fixes #2554 Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Peter Rotich authored
lock: Fix lock timing if php and db use different time zones Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
Blank page from 'register' link in notification email to guest user. Reviewed-By:
Jared Hancock <jared@osticket.com>
-
Peter Rotich authored
Fix posting-user determination in Thread::postEmail Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Nathan Febuary authored
-
Jared Hancock authored
reduce memory usage when storing file in DB Reviewed-By:
Jared Hancock <jared@osticket.com>
-
jdelhome3578 authored
include @greezybacon suggestion on fix
-
jdelhome3578 authored
Fixes #2350 in `develop`
-
Peter Rotich authored
forms: Forbid adding deleted forms to topics, form management Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Peter Rotich authored
search: Improve typeahead results and performance Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
Input type= adjustment Reviewed-By:
Jared Hancock <jared@osticket.com>
-
Jared Hancock authored
Firefox form style fix Reviewed-By:
Jared Hancock <jared@osticket.com>
-
Peter Rotich authored
tickets: Fix subject display for non text fields Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
-
Jared Hancock authored
UI fix for delete button highlight - 2456 Reviewed-By:
Jared Hancock <jared@osticket.com>
-
Jared Hancock authored
tasks: Assignment on task create Reviewed-By:
Jared Hancock <jared@osticket.com>
-
Peter Rotich authored
search: Add search for closed date Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
Changed logo displays on save Reviewed-By:
Jared Hancock <jared@osticket.com>
-
- Sep 22, 2015
-
-
Jared Hancock authored
-
Jared Hancock authored
-
- Sep 21, 2015
-
-
Nathan Febuary authored
#2557 Avatar height issue in Safari.
-
- Sep 18, 2015
-
-
Jared Hancock authored
-
Jared Hancock authored
-
- Sep 15, 2015
-
-
Thomas Oster authored
-
- Sep 14, 2015
-
-
bailey86 authored
Fix blank page from 'register' link in email
-
bailey86 authored
We have existing clients who do not have an account (yet) on osTicket. We create a ticket for them from the admin interface (creating a new guest user account) and this results in an email being sent to them with details of a job carried out. This user can then click on the link in the notification email and view the ticket as guest - and hopefully opt to register an account. The problem seems to be this - the user clicks on the ticket number in their notification email which lets them view the ticket as a guest - there is then a link to 'register for an account' linked to http://www.example.com/account.php?do=create - but clicking this link results in a blank page. The PHP error is: PHP Fatal error: Call to a member function getField() on a non-object in /home/osticket/public_html/account.php on line 35, referer: http://www.example.com/tickets.php?id=105 This seems to be related to a bug in account.php around line 34. // Guest registering for an account if ($thisclient->isGuest()) { foreach ($thisclient->getForms() as $f) if ($f->get('type') == 'U') $user_form = $f; $user_form->getField('email')->configure('disabled', true); } If $f->get('type') is not equal to 'U' then $user_form does not get set - and therefore: $user_form->getField('email')->configure('disabled', true); results in the 'call member function on a non-object error'. I think the block should be: // Guest registering for an account if ($thisclient->isGuest()) { foreach ($thisclient->getForms() as $f) if ($f->get('type') == 'U') { $user_form = $f; $user_form->getField('email')->configure('disabled', true); } } Further - to be implicit the foreach statement should have curly braces. // Guest registering for an account if ($thisclient->isGuest()) { foreach ($thisclient->getForms() as $f) { if ($f->get('type') == 'U') { $user_form = $f; $user_form->getField('email')->configure('disabled', true); } } }
-