Ignore:
Timestamp:
Nov 1, 2010, 11:21:00 PM (13 years ago)
Author:
grum
Message:

fix bug:1990 - Since release 0.5.3, unable to do search

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/AMetaData/amd_install.class.inc.php

    r7553 r7563  
    183183          $this->config['newInstall']='n';
    184184          $this->updateFrom_000502();
     185        case '00.05.03':
     186          $this->updateFrom_000503();
    185187        default:
    186188          /*
     
    197199
    198200      GPCCore::register($this->getPluginName(), AMD_VERSION, AMD_GPC_NEEDED);
    199       GPCRequestBuilder::register($this->getPluginName(), dirname($this->getFileLocation()).'/amd_rb_callback.class.inc.php');
     201      GPCRequestBuilder::register('AMetaData', dirname($this->getFileLocation()).'/amd_rb_callback.class.inc.php');
    200202    }
    201203
     
    203205    public function deactivate()
    204206    {
    205       GPCRequestBuilder::unregister($this->getPluginName());
     207      GPCRequestBuilder::unregister('AMetaData');
    206208    }
    207209
     
    273275    }
    274276
     277    /**
     278     * update the database from the release 0.5.3
     279     */
     280    private function updateFrom_000503()
     281    {
     282      GPCRequestBuilder::unregister('Advanced MetaData');
     283    }
     284
    275285
    276286    /**
Note: See TracChangeset for help on using the changeset viewer.