To participate you must create an account on apostrophenow.org. If you have already done so, click Login.

Changeset 1445

Show
Ignore:
Timestamp:
05/26/10 13:13:38 (2 years ago)
Author:
tboutell
Message:

The command.post_command hook was inadvertently removed, breaking apostrophe:migrate's ability to automatically set up the blog plugin's tables for you when adding the new plugin. Fixed

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • plugins/apostropheBlogPlugin/trunk/config/apostropheBlogPluginConfiguration.class.php

    r1379 r1445  
    2525      $this->dispatcher->connect('a.getGlobalButtons', array('apostropheBlogPluginConfiguration',  
    2626        'getGlobalButtons')); 
     27      // This was inadvertently removed just prior to 1.4. Now apostrophe:migrate hooks up properly again 
     28      $this->dispatcher->connect('command.post_command', array('aBlogEvents',   
     29        'listenToCommandPostCommandEvent')); 
    2730      self::$registered = true; 
    2831    }