Changeset 3435

Show
Ignore:
Timestamp:
12/28/06 01:02:27 (5 years ago)
Author:
gregmac
Message:

dbget/dbput removed in ast 1.4 - #1607

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk/amp_conf/htdocs/admin/extensions.class.php

    r3341 r3435  
    617617  } 
    618618  function output() { 
    619     return "dbGet(".$this->varname."=".$this->key.")"
     619    return 'Set('.$this->varname.'=${DB('.$this->key.')})'
    620620  } 
    621621} 
     
    627627  } 
    628628  function output() { 
    629     return "dbPut(".$this->key."=".$this->data.")"
     629    return 'Set(DB('.$this->key.')='.$this->data.')'
    630630  } 
    631631}