710992c2 | 05-Aug-2022 |
Christoph M. Becker |
Add more spam words for user notes Recently, we get an awful lot of spam; let's constrain it. |
369ff201 | 02-Apr-2021 |
Nikita Popov |
Try adding Reply-To header to commit mails Not sure whether this will get stripped by the mailing list, but let's try it. I don't want to specify the author/committer email in From,
Try adding Reply-To header to commit mails Not sure whether this will get stripped by the mailing list, but let's try it. I don't want to specify the author/committer email in From, as it'll likely run afoul of DMARC.
show more ...
|
89fd8c29 | 02-Apr-2021 |
Nikita Popov |
Try to fix mail charset issue Set utf-8 as the charset when using PHPMailer. The manual encoding code was a leftover from direct calls to mail() and only handles the charset in the s
Try to fix mail charset issue Set utf-8 as the charset when using PHPMailer. The manual encoding code was a leftover from direct calls to mail() and only handles the charset in the subject but not other headers.
show more ...
|
d0cac541 | 01-Apr-2021 |
Nikita Popov |
Make "Fixed bug" check case-insensitive |
9cfe978d | 01-Apr-2021 |
Nikita Popov |
Remove magic_quotes filter handling The magic quotes filter is now disabled. |
81b302aa | 01-Apr-2021 |
Nikita Popov |
Finish migration to safe queries |
cb44bbe5 | 01-Apr-2021 |
Nikita Popov |
Fix a typo |
690a7352 | 01-Apr-2021 |
Nikita Popov |
Adjust note.sql schema to work on current MySQL |
e69d94b2 | 01-Apr-2021 |
Nikita Popov |
Fix event searchby logic The !$searchby checks no longer did something meaningful after switching to the Query object. |
2e2d507f | 01-Apr-2021 |
Nikita Popov |
Let me view phpinfo |
1a08ce75 | 01-Apr-2021 |
Nikita Popov |
Migrate more code to safe query abstraction Getting closer to done... |
6135e250 | 01-Apr-2021 |
Nikita Popov |
Move more queries to safe abstraction Add a Query class to assemble queries by parts, and ?int placeholder which is needed for LIMIT clauses. |
3f5dc40d | 01-Apr-2021 |
Nikita Popov |
Use db_query_safe() in more places Replace most of the raw mysql_query() calls. |
0a86f843 | 01-Apr-2021 |
Nikita Popov |
Remove fetch/countries.php This was used by scripts/update-backend at one point, now the list is hardcoded. |
64defdfc | 01-Apr-2021 |
Nikita Popov |
Remove unused mirrors.sql We no longer have mirrors. |
105450fc | 01-Apr-2021 |
Nikita Popov |
Remove alerts functionality This was never used, and is in a broken state right now (references an incorrect database schema). It seems rather unlikely that this functionality i
Remove alerts functionality This was never used, and is in a broken state right now (references an incorrect database schema). It seems rather unlikely that this functionality is going to be finished at this point, so instead drop it entirely.
show more ...
|
2163871e | 01-Apr-2021 |
Nikita Popov |
Use db_query_safe() in forgot.php |
ed931f77 | 01-Apr-2021 |
Nikita Popov |
Add safe(r) query abstraction Add db_query_safe that accepts parameters separately. Use it in some places. |
6cc0deb4 | 01-Apr-2021 |
Nikita Popov |
Use db_connect() in some places |
5f64a408 | 01-Apr-2021 |
Nikita Popov |
Add basic instructions for local setup Not to make everything work, but at least something... |
5b8719f2 | 01-Apr-2021 |
Nikita Popov |
Don't handle full_special_chars default.filter default.filter on this server is set to magic_quotes, so remove the handling for the full_special_chars case. |
6488d65a | 31-Mar-2021 |
Nikita Popov |
Handle optional github user name Author/committer may not necessarily have a github account. |
d0822675 | 31-Mar-2021 |
Nikita Popov |
Replace uses of escape() with appropriate functions For queries, use real_clean(), for html use hsrc(). |
c8506579 | 31-Mar-2021 |
Nikita Popov |
Remove get_magic_quotes_gpc() checks master.php.net runs PHP 5.4, where magic quotes no longer exist. Add a sanity check that they're really disable, and drop code handling them. The
Remove get_magic_quotes_gpc() checks master.php.net runs PHP 5.4, where magic quotes no longer exist. Add a sanity check that they're really disable, and drop code handling them. There was at least one use of escape() that wouldn't do the right thing if this code was run with magic quotes.
show more ...
|
68c08379 | 31-Mar-2021 |
Nikita Popov |
Use strict comparison for password Rather unlikely, but could give false positives for 0e comparisons. |