Quote Originally Posted by Brent View Post
For anyone trying to install this when running later versions of PHP it seems you need to make the following change.



PHP Code:
 class dirbank {
    var 
$code$title$description$enabled;

// class constructor
    
function dirbank() {
      global 
$order
Needs to be changed to

PHP Code:
  class dirbank {
    var 
$code$title$description$enabled;

// class constructor
    
function __construct() {
      global 
$order
Hmmm... my version I downloaded already has this in it for 1.5.7, it appears to have installed okay except that it's not showing up for my customers in the cart.... anyone got any suggestions as to what I may have missed....?