<?xml version="1.0" encoding="utf-8"?>
<!-- generator="Kunena 1.0.8"> -->
<rss version="0.91">
    <channel>
        <title>Zentrack - Forum</title>
        <description>Kunena Site Syndication</description>
        <link>http://www.zentrack.net</link>
        <lastBuildDate>Fri, 10 Sep 2010 17:05:16 -0500</lastBuildDate>
        <generator>Kunena 1.0.8</generator>
        <image>
	        <url>http://www.zentrack.net/components/com_kunena/template/default_ex/images/english/emoticons/rss.gif</url>
	        <title>Powered by Kunena</title>
	        <link>http://www.zentrack.net</link>
	        <description>Kunena Site Syndication</description>
        </image>
        <item>
            <title>Subject: Description field and egate email line lenth - by: mcutting</title>
            <link>http://www.zentrack.net/forums?func=view&amp;catid=3&amp;id=6655#6658</link>
            <description>Shameless bump :)</description>
            <pubDate>Mon, 06 Sep 2010 02:02:04 -0500</pubDate>
        </item>
        <item>
            <title>Subject: delete_tickets - by: sim</title>
            <link>http://www.zentrack.net/forums?func=view&amp;catid=2&amp;id=6657#6657</link>
            <description>Version 2.6.4
deleteTicket.php on line 51

was: [code]split_from_ids[/code]
should be [code]split_form_ids[/code]

On the same subject in templates/deleteTicketConfirmation.php on  Line 71
was:
[code][/code]

should be:
[code]</description>
            <pubDate>Tue, 24 Aug 2010 03:45:53 -0500</pubDate>
        </item>
        <item>
            <title>Subject: action applicable - by: sim</title>
            <link>http://www.zentrack.net/forums?func=view&amp;catid=2&amp;id=6654#6654</link>
            <description>In function action applicable it checks if you have enough access or if there is an override for this action.
The override code doesn't work because it is ORed instead of ANDed.
See bold where I changed it from OR to AND

   } else if( $c[&quot;owner&quot;] &gt; 0 ) {
      // here we must be the owner (or there is an override)
      // if we aren't the owner, check for super
      if( $ticket[&quot;user_id&quot;] != $user_id ) {
        $user = $this-&gt;get_user($user_id);
        $access = $this-&gt;getAccess($user_id);
        $bin_access = isset($access[&quot;$bin_id&quot;])? $access[&quot;$bin_id&quot;] : $user[&quot;access_level&quot;];
        $access_prevents = $bin_access &lt; $this-&gt;getSetting(&quot;level_super&quot;);
        if( empty($c[&quot;override&quot;])  &amp;&amp;  $access_prevents ) { 
          $this-&gt;addDebug('actionApplicable', &quot;[]must be owner or meet override&quot;, 3);
          return false;
        }
      }
    }</description>
            <pubDate>Thu, 12 Aug 2010 02:47:32 -0500</pubDate>
        </item>
        <item>
            <title>Subject: Allowed Attachments list - by: sim</title>
            <link>http://www.zentrack.net/forums?func=view&amp;catid=2&amp;id=6653#6653</link>
            <description>The allowed attachment list is supposed to allow all attachments for a 0 setting. The current 2.6.4 code doesn't.
Here is a patch:

  function checkAttachmentExt($filename) {
    $ext = strtolower(preg_replace('@^.*[.]([a-zA-Z0-9]+)$@', '\1', $filename));
    $possibles = $this-&gt;getSetting('attachment_types_allowed');

    if( $possibles &amp;&amp; $possibles!='0' ) {
      $vals = split(&quot; *, *&quot;,$possibles);
      if( !in_array($ext, $vals) ) {
        return false;
      }
	  else {
	    return true;
	  }
    }
    return true;
  }

1) I added &amp;&amp;possibles!='0' because it is a string and it will always exist.
2) I changed the default to return true instead of false because if there is no possibles or it is 0 then it should be allowed.</description>
            <pubDate>Thu, 12 Aug 2010 01:37:33 -0500</pubDate>
        </item>
    </channel>
</rss>