centurion-project / Centurion

Centurion is an open-source CMS delivered as a flexible PHP5 Content Management Framework
http://www.centurion-project.org
197 stars 51 forks source link

Translation trait DbTable error #26

Open aurmil opened 12 years ago

aurmil commented 12 years ago

problem description and aspruds's fix: http://groups.google.com/group/centurion-project/browse_thread/thread/e3c01999ee43ed65

in /library/Centurion/Contrib/translation/traits/Model/DbTable.php change Centurion_Signal::factory('on_select_joinInner')->connect(array($this, 'onJoinInner'), $this->_model); to Centurion_Signal::factory('on_select_joinInner')->connect(array($this, 'onJoinInner'));

lchenay commented 12 years ago

I'm currently on it.

It's not the solution because it make the connect each time, and the function onJoinInner is called each join even if the DbTable does not implement the interface.