Jon Behr
Jon Behr
Not quite sure if I am doing something wrong here, but even when I set $config['sprinkle']['disable_processing'] = TRUE; then assets are still minified and combined automatically. I understand from the...
With normal html select elements, you can specify the width of the select in css very easy: select {width: 220px;} Even if you do this, then the width of the...
If you have multiple `unique` indexes on a table, then this plugin incorrectly concatenates them, instead of creating separate indexes. ``` $table->unique(["email", "username", "uuid"], 'unique_users'); ``` The problem here is...
All of my controller methods set up the view using the following kind of syntax: ``` php $this->layout->content = View::make('posts.index', $posts) ``` I am unit testing this with the following...