aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add htmlesc againHEADmasterLaria Carolin Chabowski2021-01-01
| | | | Some plugins use that function :(.
* Fix path handling bugLaria Carolin Chabowski2021-01-01
|
* setup.php: Fix list of required directoriesLaria Carolin Chabowski2020-11-08
|
* Get rid of db.php and include config directly in entry pointsLaria Carolin Chabowski2020-11-08
|
* Make SITE_BASE_PATH a method of EnvLaria Carolin Chabowski2020-11-08
| | | | This allows us to get rid of utils.php
* Move delete_directory() into Plugin classLaria Carolin Chabowski2020-11-08
| | | | It was the only place it was used
* Remove intcmp()Laria Carolin Chabowski2020-11-08
|
* Replace array_repeat() with equivalent array_fill() callsLaria Carolin Chabowski2020-11-08
|
* Remove unused functionLaria Carolin Chabowski2020-11-08
|
* Remove last qdb() usage! \(^.^)/Laria Carolin Chabowski2020-11-08
|
* Remove unused functions/classesLaria Carolin Chabowski2020-11-08
|
* Settings: Use new Database classLaria Carolin Chabowski2020-11-08
|
* Move article status consts into Article classLaria Carolin Chabowski2020-11-08
|
* Make imagetype file extension array a const of ImageLaria Carolin Chabowski2020-11-08
| | | | Yet another pointless global var gone :)
* Make dbversion a method of DatabaseLaria Carolin Chabowski2020-11-08
| | | | | We currently don't actually use it, but it might come in handy, so let's keep it.
* Plugin: Fix creating plugin database recordsLaria Carolin Chabowski2020-11-08
| | | | | Newer MySQL / MariaDB versions are a bit more strict when omitting values on insert which made the old Plugin::create() not work any more.
* Plugin: Remove unused methodLaria Carolin Chabowski2020-11-08
|
* array2dir: Create parent directories if missingLaria Carolin Chabowski2020-11-08
|
* Remove some unused DB functions / globalsLaria Carolin Chabowski2020-10-20
| | | | | Now it begins to pay off, that (nearly) all model classes were updated to use the new Database class :)
* Article: Update documentation and remove global db usagesLaria Carolin Chabowski2020-10-20
|
* Repository: Update documentation and remove global db usagesLaria Carolin Chabowski2020-10-19
|
* Image: Update documentation and remove global db usagesLaria Carolin Chabowski2020-10-19
|
* Image: Make $pre_max{w,h} constsLaria Carolin Chabowski2020-10-19
|
* Image: Fix referencing undefined propertyLaria Carolin Chabowski2020-10-19
|
* Tag: Update documentation and remove global db usagesLaria Carolin Chabowski2020-10-19
|
* Section: Update documentation and remove global db usagesLaria Carolin Chabowski2020-10-19
|
* Plugin: Update documentation and remove global db usagesLaria Carolin Chabowski2020-10-18
|
* Style: Update documentation and remove global db usagesLaria Carolin Chabowski2020-10-18
|
* Comment: Update documentation and remove global db usagesLaria Carolin Chabowski2020-10-05
|
* Multilingual+Translation: Update documentation and remove global db usagesLaria Carolin Chabowski2020-10-05
|
* Group: Update documentation and remove global db usagesLaria Carolin Chabowski2020-10-05
|
* User: Update documentation and remove global db usagesLaria Carolin Chabowski2020-10-05
|
* KVStorage: Move into namespace and remove global db usagesLaria Carolin Chabowski2020-10-05
| | | | Also update documentation a bit (mostly converting to phpdoc)
* Remove unused classLaria Carolin Chabowski2020-10-05
|
* Introduce some new database wrappersLaria Carolin Chabowski2020-10-05
| | | | | This will allow us to avoid using globals and use the autoloader in the future.
* Use password_hash() and friends to hash and verify passwordsLaria Carolin Chabowski2020-09-25
| | | | | | | | | | | | Previously I rolled my own password hashing function. While it at least used some sort of salt, it's still a terrible idea. The newly created class PasswordHash wraps the password_hash() family of functions but can also check the old password hash format (to distinguish them, the new password hashes are prefixed with a '!'). In PasswordHash::needsRehash we then always report an hash of the old format as being in need of a rehash. That way, these old hashes will be replaced the next time the user successfully logs in.
* Cast POSTed data into strings before passing it into Esc::escLaria Carolin Chabowski2020-09-25
|
* Replace kses with HTMLPurifierLaria Carolin Chabowski2020-09-25
| | | | This gets rid of our last non-compüoser dependency! :)
* Require jQuery using composerLaria Carolin Chabowski2020-09-25
|
* Fix some broken references to the \ste namespaceLaria Carolin Chabowski2020-09-25
| | | | Should be \r7r\ste now
* Refactor textprocessorsLaria Carolin Chabowski2020-09-25
| | | | | They are now managed by TextprocessorRepository and are instances of Textprocessor. This replaces the global $textprocessors variable.
* Deprecate htmlesc for Esc::escLaria Carolin Chabowski2020-09-25
| | | | "Stole" this class from another project of mine (micropoly)
* Turn documentation in plugin_api into phpdocLaria Carolin Chabowski2020-09-25
|
* Fix inconsistent return typeLaria Carolin Chabowski2020-09-22
|
* Get php-markdown via composerLaria Carolin Chabowski2020-09-22
|
* Require ste v 2.0.1Laria Carolin Chabowski2020-09-22
| | | | v 2.0.0 was not compatible any more
* Update INSTALL.md to reflect the usage of composerLaria Carolin Chabowski2020-09-22
|
* Require STE using composer and add autoloadingLaria Carolin Chabowski2020-09-22
|
* Remove session_doctor.phpLaria Carolin Chabowski2020-09-22
|
* Code cleanupLaria Carolin Chabowski2020-09-21
| | | | | | | | | | - Remove unused variables - Remove unused utility functions - Asserting presence and typehinting global variables - Remove unused variables - Add missing global - Add parameter type constraint - Fix some references to nonexisting variables