Anonymous
Forum Replies Created
-
In reply to: cant add collaborators
June 3, 2021 at 5:55 am #7704LlafrParticipantAre u using the ldap plugin? We hade simular problem like this and it was related to the lookup in the AD.
LlafrParticipantOn the computer you can use Ferdi and Universal Darkmode, it looks like this:
In reply to: Stevland – Are you ok?
January 22, 2021 at 3:51 am #7282LlafrParticipantCould it be a good time to put this project on github and get help from more developers?
In reply to: This is a test post
August 19, 2020 at 11:38 pm #6234LlafrParticipantTest OK!
In reply to: Upstream 1.12.5 release – fixes zero length attachments
November 26, 2019 at 1:44 am #5321LlafrParticipantHere is how we fixed it:
change one line in include/class.mailfetch.php
line: 834
change
$file['dataclb'] = function() use ($self, $mid, $a) {
to
$file['data'] = function() use ($self, $mid, $a) {
In reply to: typeahead.css .dropdown-menu z-index to low?
July 10, 2019 at 11:29 pm #4786LlafrParticipantIt is only in mobile view, this is the list i question:
In reply to: Glitch in user view of tickets (ost/tickets.php)
November 1, 2018 at 12:41 am #2499LlafrParticipantuser-styles.css i a nice thing will try this att next upgrade, so we don’t have to redo all the css every time we upgrade 🙂
In reply to: Fields top row out of order in advanced search
September 17, 2018 at 2:35 am #2206LlafrParticipantThis is a real shitty solution but at least the mobile view will work:
Remove lines near 733 in /include/staff/tickets.inc.php so it looks like this:
<br />
<?php<br />
if($search && !$status){<br />
$displaystatus=TicketStatus::getLocalById($T[‘status_id’], ‘value’, $T[‘status__name’]);<br />
if(!strcasecmp($T[‘status__state’],’open’))<br />
$displaystatus=”<b>$displaystatus</b>”;<br />
} else { ?>This is better than nothing, rows will still be miss placed but mobile view will work, hope some one has a better one.
In reply to: Theme Settings not being applied
September 12, 2018 at 11:30 pm #2171LlafrParticipantThat sound lika a permissions issue, the web server needs to be able to write to the themes folder.
On IIS you can change the settings in the IIS MMC.
In reply to: Fields top row out of order in advanced search
September 4, 2018 at 7:42 am #2122LlafrParticipantI found that it looks even worse with mobile view:
In reply to: Glitch in user view of tickets (ost/tickets.php)
September 4, 2018 at 3:07 am #2114LlafrParticipanti found a workaround so u can at least read the text:
ost/assets/default/css/theme.css
line 1052
Change display to inline:
.thread-entry > .avatar {<br />
margin-left: -60px;<br />
display:inline;<br />
width:48px;<br />
height:auto;<br />
border-radius: 5px;<br />
}This does not make it show as a bubble in a bubble but u can read the text, a prettier solution would be nice
In reply to: Can’t create task on mobile version
February 12, 2018 at 8:43 am #908LlafrParticipant<p>Any way ti solve this?</p>
<p>I tested adding a li to the sub menu with href=”tasks.php#tasks/add” but that’s not working in this case.</p>
<p> </p>
<p> </p>In reply to: Locked ticket icon glitch
January 29, 2018 at 4:43 am #744LlafrParticipantWe are used to the Lock symbol and know that someone is working on it, and i think you get an additional warning if you click and open a ticket that’s locked.
It could be that the extra warning is now shown because .sticky.bar.fixed is above. The session expired warning appeared behind. So i think that needs to be moved or get a higher z-index than .sticky.bar.fixedIn reply to: Avatar Source: Gravatar / Identicon
January 24, 2018 at 3:14 am #693LlafrParticipantQuick fix:
File: class.avatar.php
Edit line 244$url .= “?s=$size&d=identicon“;
In reply to: Avatar Source: Gravatar / Identicon
January 24, 2018 at 3:08 am #692LlafrParticipantProblem is this:
src=”//www.gravatar.com/avatar/bd5ba0f14becd1bf0cfc950c6a7f13ae?s=80&d=//osticketawesome.com/avatar.png”i think it sould look like this:
src=”www.gravatar.com/avatar/bd5ba0f14becd1bf0cfc950c6a7f13ae?s=80&d=identicon”