Why you always set "no cache" to true? It is a very huge penalty to overall format perfomance!

    case 'no cache':
      switch ($delta) {
        case 0:
          return 1;
        default:
          return 0;
      }

$delta always equal 0.

Comments

blackdog’s picture

Status: Active » Fixed

I've cleaned up the code quite a bit, and removed the 'no cache' case. Thanks for the heads up!

blackdog’s picture

Status: Fixed » Closed (fixed)