- Jun 03, 2016
- May 17, 2016
-
-
Michael authored
Corrected "over-W-ridden" and removed the unnecessary "w" from the word "overridden"
-
- May 09, 2016
-
-
Michael authored
Updated several files to split up phrases like "Your lock has expired. Please try again!" into "Your lock has expiredx" and "Please try again!"
-
- Apr 27, 2016
-
-
Michael authored
Change to make one translation less since `%s is currently assigned to <b>%s</b>` is already used in ajax.tasks.php and ajax.tickets.php
-
- Apr 26, 2016
-
-
Peter Rotich authored
-
- Apr 25, 2016
-
-
Jared Hancock authored
-
- Apr 24, 2016
-
-
Jared Hancock authored
This feature adds a setting to the control panel to require signing in to view attachments. This is in addition to the security already provided in the download URLs. Currently, download URLs are signed for a specific help desk, and automatically expire after about 24 hours. The exact timing is the following midnight allowing for at least 12 hours cache time. Administrators can impose this extra security feature to refuse serving attachment files if the user is not currently signed in. This could prevent third-party users from viewing an attachment if they were able to get access to the download URL before it expired.
-
Peter Rotich authored
* Separate primary from extended access members when listing department access. * Add ability to update primary department members role * Quick staff add - inherit role of the primary department as default role
-
Peter Rotich authored
Add ability get sorted department members. Extended members are sorted, annotated and cached.
-
Peter Rotich authored
Consolidate agents name sorting in Staff::nsort. The routing expects a query set.
-
Peter Rotich authored
isMember routine wrongly assumed getMembers returned staff_id indexed hashtable.
-
Peter Rotich authored
-
Peter Rotich authored
Session backend issues update via write on new session which caused assertion to fail.
-
Josh Richet authored
If the Return-Path header does not match the From header, emails are significantly more likely to be blocked by spam filters. This patch forces the return header to match the from address without having to change php.ini and therefore works properly on servers that have multiple apps sending from multiple email addresses for example shared hosting, multiple support emails in one instance etc.
-
Peter Rotich authored
Add callback filter to standard iteration method to skip deleted items.
-
Peter Rotich authored
Use file id instead of attachment id to unset new Get new files objects as array
-
Jared Hancock authored
-
Peter Rotich authored
Credit @Jared
-
Peter Rotich authored
Include username when checking if a system email already exists. This is important for emails that use aliases.
-
Peter Rotich authored
Use org_id to filter users to update on organization delete
-
Peter Rotich authored
-
- Apr 22, 2016
-
-
Michael authored
Within this commit, several files got updated to split up strings like "Disable for this team" / "Disable for this department" into "Disable for" and "this team"/"this department". So a) a little bit less translations and b) all strings of "this (ticket|task|API|canned|FAQ|depart|email|group|site|SLA|agent|team|template|help|ban|category|custom|end user|role)" can match already existing "this ..." translations now. PS: Didn't remove all that whitespaces in include/staff/tpl.inc.php - seems like my php editor app has done that automatically :/
-
- Apr 21, 2016
-
-
Michael authored
Note: Since I'm not sure if that's all (replacing %s %s with %1$s %2$s) which is necessary to make this work, I'm sorry in advance for a potential "bad commit". As already written on Crowdin, in German the order is wrong, so my suggestion is to make it possible to change the order by transforming "%s %s" to "%1$s and %2$s". Format in English: Successfully assigned 4 selected tasks Needed German: Successfully 4 selected tasks assigned
-
- Apr 20, 2016
- Apr 19, 2016
-
-
Michael authored
Looks like some copy&paste issue, replaced "ticket" with "task".
-
Michael authored
Too much splitting here... just realized it when I looked at Crowdin that the German translations sounds like a Google Translation - so basically ok, but obviously wrong. Reason is that you often don't know what %s stands for and here %s was splitted up into another string with antoher %s which is definitely too much for good :/
-
Jared Hancock authored
-
Jared Hancock authored
If something like members__staff is considered leaving the Team model, and the `members` relationship is nullable, and the `staff` relationship is not, in the context of the compiled SQL statement, the second join should also be considered nullable (LEFT join), because otherwise inconsistent results would be returned from the query. In other words, if a count is considered as an annotation to the Team model instances, Teams with zero members should still be considered as valid teams and should be selected with such an annotation. Before this patch, however, the join between TeamMember and Staff would have been an inner join instead of a LEFT join, which could skew the database results.
-
Jared Hancock authored
-
Jared Hancock authored
This fixes an issue where the CDATA table is updated with the OLD version of an answer after it is updated. That is, after an answer is updated, the CDATA table is also updated to reflect the change; however, the old content of the answer value is used when updating the CDATA value.
-
- Apr 18, 2016
-
-
Michael authored
Fix translation so it makes sense. Before: "Unable to change status for 2 any of the selected tickets" - sounds wired After: "Unable to change status of 2 selected tickets" - sounds correct and fits into the rest of the translation scheme ;)
-
- Apr 15, 2016
-
-
Michael authored
One s too much here - it's singular and not plural when editing a task
-
- Apr 14, 2016
-
-
Michael authored
Missing h in highly
-
Michael authored
If I'm not mistaken this should be equivalent to "Ticket Updated", but it seems here the "d" at the end is missing - so the correct string I think is "Task Updated"! https://github.com/osTicket/osTicket/blob/develop/include/class.task.php#L1235 https://github.com/osTicket/osTicket/blob/develop/include/class.ticket.php#L2828
-
Michael authored
Missing m in department
-
Michael authored
Small typo
-
Jared Hancock authored
-