Sergei Predvoditelev
Sergei Predvoditelev
What problem is being solved here? Is something not working right now?
> when the page loading it will fetch csrf token twice from session sorry, forget to update the CsrfviewInjection file Only need to refactor `CsrfViewInjection::getCsrfParameters()` metod to fix it. Why...
Anyway you should get parameter/header name from middleware, becuase it can be not default.
I like this suggestion.
> How do you set it? How do you run the app? `make up` and `var_dump($_ENV);` Result: ```php 'YII_ENV' => null 'YII_DEBUG' => boolean true ``` But `.env` file consists:...
Done by https://github.com/yiisoft/app/pull/352
Suggest shorten the list when need add PHP opening tag to several items: - block contain code with several sections (for example, class declaration + use) that can be placed...
> @vjik that PR is now merged. Anything to add in this one? When data reader with limit, links in pagination shouldn't contains sort parameter.
MSSQL is not supported `CASCADE` option: https://learn.microsoft.com/sql/t-sql/statements/drop-table-transact-sql?view=sql-server-ver16 Should we throw exception when `$cascade` is true in MSSQL? Or we need to use tricks, for example: https://stackoverflow.com/a/4858773?
> > check for existing Yii Debug in app > > What's the reason for it? I was supposed to use it to add collectors, but existence is not enough,...