Antoine Sledge

Results 11 comments of Antoine Sledge

I feel like you guys are complicating a lot. This is object oriented programming with a public interface! You don't need to modify Model.php..., this ruins your ability to upgrade...

Looks like some others have already had and posted a similar fix to this problem. https://github.com/kla/php-activerecord/issues/219 No one's written regressions for this though so maybe I can write something for...

As a less dirty work around... in your user model you can add this until the bug is sorted out. ``` public function validate() { if(static::exists(array('conditions'=>"username = ?",$username)) $this->errors->add('username','must be...

Makes sense, I think the proper syntax for my example would've been: ``` static::exists(array('conditions'=>array("username = ?",$username))); static::exists(array('conditions'=>array('username'=>$username))); ``` Glad you have a work around, but this definitely looks to be...

So....... I think we should start 1.1 beta TODAY. And in general there can always be a (current version + 1) in active development as an open branch. We can...

If you can write tests for it and fix it they're more than welcome to you writing bug fixes :).

Feels like a 1.0 addition. It's backwards compatible and it's five lines that are pretty easy to follow what they do, on top of having tests!

I think this may currently be an error on your part if you're using the latest version on github. Right now I think `Lesson->curricula` has a dead end, because once...

Alright, I recreated a basic version of you db schema and the exception I get is a little different but I'm sure it's the one you got before you made...

I can't initialize the library with a straight pull of your branch. :( `Fatal error: Call to protected ActiveRecord\Connection::__construct() from context 'ActiveRecord\Config'` Maybe you could try the fix in the...