fowr
b6c8b05cf7
change the default of twig_auto_reload to false
2023-03-30 17:52:38 -03:00
Yuri Kuznetsov and GitHub
05851f950e
Merge pull request #552 from perdedora/fix_confirm_page
...
Add global to mod_confirm
2023-03-30 16:31:44 -04:00
basedgentoo and GitHub
76c5f77932
Merge pull request #555 from vichan-devel/timeline
...
[timeline] Actually wait, it's even more complicated than that.
2023-03-29 21:21:35 -04:00
Fredrick Brennan
ddae472dd1
[timeline] Make 4chan the head of the tree
2023-03-29 21:17:25 -04:00
Fredrick Brennan
db68297f58
[timeline] Actually wait, it's even more complicated than that.
2023-03-29 21:00:24 -04:00
basedgentoo and GitHub
4e383426bf
Merge pull request #554 from vichan-devel/timeline
...
[README] Add timeline
2023-03-29 20:36:56 -04:00
Fredrick Brennan
fc00b08c80
[README] Add timeline
2023-03-29 20:26:38 -04:00
fowr
427f3f8a0a
delete remove_whitespace filter
2023-03-29 19:13:28 -03:00
fowr
d2bb450b1a
update twig to 2.9
2023-03-29 18:59:28 -03:00
fowr
2c847a6413
add global to mod_confirm
2023-03-29 18:20:10 -03:00
f89s
90bf50fa30
Fix combining character set, allow limit for combining characters
2023-03-28 19:01:12 +04:00
Yuri Kuznetsov and GitHub
08c9929eb0
Merge pull request #548 from basedgentoo/master
...
Add Twemoji submodule.
2023-03-25 01:20:30 -04:00
basedgentoo
19c15325b7
Add Twemoji submodule. To use: git submodule init && git submodule update
2023-03-25 01:15:47 -04:00
Yuri Kuznetsov and GitHub
448d506135
Merge pull request #547 from basedgentoo/basedgentoo-twemoji-issue
...
This should've been a submodule.
2023-03-25 00:45:50 -04:00
basedgentoo and GitHub
a93a2dc869
This should've been a submodule.
2023-03-25 00:42:34 -04:00
runit
573dfa84e3
Add Twemoji JavaScript Library
2023-03-25 00:21:06 -04:00
kuz-sysadmin and GitHub
f9db8e05de
Fixed maintainer list
...
To look more like past entries, removed unecessary note.
We will keep e politics out of the github.
2023-03-24 04:30:04 -04:00
basedgentoo and GitHub
dc7668df64
URL error
2023-03-24 04:22:43 -04:00
basedgentoo and GitHub
686dc80644
Hopefully final update to the readme for now.
2023-03-24 04:21:43 -04:00
basedgentoo and GitHub
95d73ae6f9
Update README.md
2023-03-24 03:53:05 -04:00
basedgentoo and GitHub
324e2f6af4
Update README.md
2023-03-24 03:03:09 -04:00
basedgentoo and GitHub
e0e8ea50a9
Update README.md
2023-03-24 01:41:49 -04:00
basedgentoo and GitHub
f3f6d2aa2d
Professionalism!
2023-03-24 01:37:12 -04:00
basedgentoo and GitHub
9d460d5b0a
Update README
2023-03-24 01:36:25 -04:00
RealAngeleno and Fredrick Brennan
f631b83fb1
fix issues with the banner script not working
...
PHP 7.4
Notice: Trying to access array offset on value of type resource in on line 13
Notice: Trying to access array offset on value of type resource in on line 14
Notice: fpassthru(): read of 8192 bytes failed with errno=21 Is a directory in on line 17
2023-03-09 01:17:09 -05:00
Fred Brennan
a69337e243
Apply inc/display.php@0a2dfed from vichan/infinity
2023-01-24 02:35:15 -05:00
Fredrick Brennan and GitHub
491f71ce3a
[README] +webservers/PHP exp needed to use in 2023
2023-01-20 22:39:24 -05:00
discomrade and Fredrick Brennan
85b5dee77d
Fix post number on dismissed reports log, show id
...
Previously the report dismiss logs would show the report id instead of the post number.
2023-01-20 22:36:36 -05:00
fowr and Fredrick Brennan
2d708984c4
fix: vichan ban length post variable is different than npfchan. causing the ban to be always permanent
2023-01-14 19:22:04 -05:00
perdedora and GitHub
b02a1fc0db
feat: edit pre-existing bans ( #528 )
...
* feat: edit pre-existing bans
* change default permission
* theres no need for elseif here. related: d34f083a6b33185927c6b79a38477f4ea4ce49b5
* quote href param
* changes made
2023-01-12 20:38:23 -05:00
fowr and Fredrick Brennan
46b29de7ff
remove requires since we are using autoload and its broken
2023-01-12 15:33:33 -05:00
Fred Brennan
fe3e4997b6
+static/unapplied patches
2023-01-12 05:37:21 -05:00
Fredrick Brennan and GitHub
3256049ca9
[README] + § Unapplied patches
2023-01-12 05:30:08 -05:00
discomrade and GitHub
5d31f3bab7
Add open parentheses to cite regex
...
Allows cite regex to match a post number after an opening parenthesis. "I like the comfy threads (>>1 and >>2) because they're comfy"
From https://github.com/fallenPineapple/NPFchan/commit/d78254b41db7902b9463b8d5ccfecd30265bacf9
2023-01-12 10:16:15 +00:00
discomrade and Fredrick Brennan
2317c0adee
Add default value for flood_cache
...
The original code left flood_cache undefined, leading to errors in newer versions of PHP. See https://github.com/vichan-devel/vichan/issues/525
2023-01-12 03:30:23 -05:00
Majin Bejitto and Fredrick Brennan
23163ae59c
fix "scandir should not need to sort in b.php (banner code)"
...
scandir by default sorts files in ascending order. this is unnecessary when you're picking a random file anyway. it's just wasting CPU cycles and increasing latency as more files are added.
currently it is
$files = scandir($dir);
it should be
$files = scandir($dir, SCANDIR_SORT_NONE);
2022-12-21 03:36:45 -05:00
Majin Bejitto and Fredrick Brennan
a0f699d49f
fix "anchor/bumplock icon won't show up without fixing variable name"
...
mistake in /templates/post_thread.html
it should be post.sage not post.bumplocked, there is no bumplocked field in posts_X tables
2022-12-21 03:36:35 -05:00
Fredrick Brennan
70222e8c2d
Revert "When moving Reply from Thread to Thread: Remove re-direct to error page "Thread does not exist""
2022-12-14 03:18:00 -05:00
27chan and GitHub
5961373dda
Merge pull request #518 from smolten/master
...
When moving Reply from Thread to Thread: Remove re-direct to error page "Thread does not exist"
2022-12-13 17:31:36 -03:00
smolten
812a111107
When moving a post, add condition (post is Thread) before trying to make Thread for post. Removes "Thread Does not exist" page that showed up even when a post was successfully moved between threads.
2022-12-13 00:56:23 -07:00
Fred Brennan and Scotty Molt
191dbd3be0
[SECURITY] [REGRESSION] Fix config editor UI
...
Closes #516 .
Co-Authored-By: Scotty Molt <smolt@asu.edu >
2022-12-10 10:27:59 -05:00
27chan
cd444a1c1b
Update footer
...
Remove duplicate code footer in all pages
Updated the link to the project on github
2022-12-06 16:55:26 -03:00
perdedora and GitHub
7571df84c8
break to avoid undefined error ( #514 )
2022-11-28 17:10:20 -05:00
deysu and GitHub
c8f88c14a8
Add banners as default functionality & display them on mod login / dashboard when enabled ( #513 )
...
* Add banner support as a default, integrated option.
Used lainchan's original banner script, authored by barrucadu
* Display banners on moderator login and dashboard
* Remove memes & better directory structure
2022-11-17 01:48:24 -05:00
runit and Fredrick Brennan
f62acd5c1a
banned.php now shows a pretty page instead of an ugly one. credits to JamesJDillon @ Lainchan
2022-10-15 10:09:10 -04:00
runit and Fredrick Brennan
4e5fecebd2
I didn't need to actually touch this.
2022-10-15 10:09:10 -04:00
runit and Fredrick Brennan
63b71bf1fc
We're not Tinyboard anymore. We've been vichan for 8 years. We should reflect that.
...
Also use Github wiki so new enhancements can be reflected. It's better than linking to 10-year-old archived documentation.
I'll update the wiki eventually.
2022-10-15 10:09:10 -04:00
runit and Fredrick Brennan
b6d411c5e4
I'd just like to interject for a moment.
2022-10-15 10:09:10 -04:00
清靈語 and Fred Brennan
5780e78975
Replace Google reCAPTCHA API's domain ( #507 )
...
This makes it accessible in mainland China.
Sources:
google/recaptcha#227
https://developers.google.com/recaptcha/docs/faq#can-i-use-recaptcha-globally
https://meta.stackoverflow.com/questions/402339/please-change-the-recaptcha-link-to-ensure-the-site-is-accessible-in-china
Co-Authored-By: Fredrick Brennan <copypaste@kittens.ph >
2022-10-15 10:07:10 -04:00
Fred Brennan
4c6a695a6f
Use ENT_QUOTES when converting UTF-8 to HTML ( #448 )
...
Closes #448 .
2022-09-15 14:46:05 -04:00