1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-26 16:30:52 +01:00
Commit Graph

550 Commits

Author SHA1 Message Date
Michael Foster
4f4e0b73a8 Erorr handling update 2013-08-03 02:01:52 -04:00
Michael Foster
3a0ed6fad3 Better error handling/displaying with $config['debug'] and $config['verbose_errors'] 2013-08-03 00:22:28 -04:00
Michael Foster
d59e74f394 Major config.php cleanup and a few minor misc fixes. 2013-08-02 20:52:58 -04:00
czaks
926b2c31ed Merge branch 'master' of https://github.com/savetheinternet/Tinyboard 2013-08-01 00:47:33 -04:00
Michael Foster
d379224e3f Add optional database table prefix (issue #118; see issue comments for details) 2013-07-31 22:14:26 -04:00
czaks
a902bf6cba Merge branch 'master' of https://github.com/savetheinternet/Tinyboard 2013-07-31 21:36:54 -04:00
czaks
4d8c7f67cd markup modifiers: make it even harder to escape 2013-07-31 21:27:50 -04:00
Michael Foster
e740f45ed1 Bugfix: HTML injection in post editing (introduces and fixes yet another bug) 2013-07-31 21:24:17 -04:00
czaks
164d0e6e3b Revert "markup modifiers: make it even harder to escape"
This reverts commit d7ea47a91f.
2013-07-31 21:22:57 -04:00
czaks
07f8aa8c4c Revert "facilitate using markup modifiers multiple times; make raw html not consume the whole post"
This reverts commit e7dd0bbc4a.
2013-07-31 21:22:32 -04:00
czaks
ef9ede073f Merge branch 'master' of https://github.com/savetheinternet/Tinyboard
Conflicts:
	inc/functions.php
2013-07-31 21:03:13 -04:00
Michael Foster
d30d94960c Allow public ban messages on raw HTML posts 2013-07-31 21:02:26 -04:00
Michael Foster
da5048a0e4 SQL cleanup 2013-07-31 20:51:43 -04:00
czaks
99427246e1 markup modifiers: make it even harder to escape 2013-07-31 20:13:19 -04:00
czaks
ada248ce4a facilitate using markup modifiers multiple times; make raw html not consume the whole post 2013-07-31 20:11:11 -04:00
czaks
0eaf52583f Merge branch 'master' of https://github.com/savetheinternet/Tinyboard
Conflicts:
	templates/thread.html
2013-07-31 19:25:04 -04:00
Michael Foster
2b74f8b37d Markup modifiers: raw HTML 2013-07-31 19:18:55 -04:00
Michael Foster
be11041471 Markup modifiers. Fix issue #66 (public ban message lost when rebuilding post body) 2013-07-31 18:59:54 -04:00
czaks
2c8bd71a9a Merge branch 'master' of https://github.com/savetheinternet/Tinyboard 2013-07-31 17:05:53 -04:00
Michael Foster
19b719f0af Fix last commit 2013-07-31 17:04:36 -04:00
Michael Foster
7619d23499 Only run SQL query to count threads if we really need to 2013-07-31 17:02:42 -04:00
czaks
7e58e50516 Merge branch 'master' of https://github.com/savetheinternet/Tinyboard
Conflicts:
	inc/config.php
	inc/display.php
	inc/functions.php
	inc/image.php
	js/expand.js
	js/hide-threads.js
	js/local-time.js
	js/smartphone-spoiler.js
	templates/header.html
	templates/index.html
	templates/main.js
	templates/page.html
	templates/post_reply.html
	templates/post_thread.html
	templates/thread.html
2013-07-31 14:54:20 -04:00
Michael Foster
18017ff761 Javascript l10n: Work without $config['additional_javascript_compile'] 2013-07-31 06:54:53 -04:00
czaks
1924e15354 js i18n: finish implementation with addition of the compiled locale strings file to additional javascripts 2013-07-31 04:57:50 -04:00
czaks
fb1968c0b9 i18n one more string in inc/functions.php 2013-07-31 04:56:42 -04:00
czaks
e968fd6ce9 localise time values 2013-07-31 04:55:34 -04:00
Michael Foster
84252f1c8a Rename $config['url_ads'] to $config['link_prefix'] 2013-07-31 03:43:01 -04:00
Marcin Łabanowski
61c0280288 url_ads: fix it not working 2013-07-31 03:39:20 -04:00
szalej
f42121db4a Update inc/functions.php
url ads
2013-07-31 03:39:15 -04:00
szalej
8021d22e3b Update inc/functions.php
Hide Referrer (nullrefer.com)
2013-07-31 03:39:10 -04:00
czaks
6eaff24cdc Merge branch 'master' of https://github.com/savetheinternet/Tinyboard 2013-07-31 03:18:11 -04:00
Michael Foster
a15a37cd4e Previous commit comment fix 2013-07-31 03:13:51 -04:00
Michael Foster
a8918d3bbe Markup/quote fix for multibyte 2013-07-31 03:12:06 -04:00
czaks
eed8767039 Merge branch 'master' of https://github.com/savetheinternet/Tinyboard
Conflicts:
	inc/functions.php
	inc/mod/pages.php
	install.php
	js/expand.js
	mod.php
2013-07-31 02:30:44 -04:00
Michael Foster
c823bcb2c3 Fix last commit: purge() issue 2013-07-31 02:19:58 -04:00
Michael Foster
ca6cb1fdea Allow Unicode in board URIs. 2013-07-31 02:08:55 -04:00
Michael Foster
a01f53b4a4 Upgrade to utf8mb4 charset for MySQL server versions above 5.5.3. Keep support for older versions. Fix charsets for multiple columns and tables. 2013-07-30 22:08:56 -04:00
Michael Foster
e2adc0093d MySQL's utf8 charset only supports up to 3-byte symbols. Insterting four byte symbols (U+010000 to U+10FFFF) can be done maliciously to break HTML mark-up.
The ideal solution was to convert to MySQL's utf8mb4 charset, but then we would lose support for MySQL < 5.5.3. In this fix, incompatible characters are encoded as HTML numeric character references (eg. #65536) and just stripped from body_nommarkup.
2013-07-30 16:41:10 -04:00
czaks
f5115f1945 Merge branch 'master' of https://github.com/savetheinternet/Tinyboard 2013-07-28 20:51:43 -04:00
Michael Foster
d9dfed5e1c Fix for last commit 2013-07-28 20:46:00 -04:00
Michael Foster
9a14d32c77 Strip combining characters from Unicode strings (eg. Zalgo) 2013-07-28 20:33:26 -04:00
czaks
a61c7a32bb localise time values 2013-07-27 01:50:38 -04:00
czaks
56206315c6 i18n one more string in inc/functions.php 2013-07-27 01:21:30 -04:00
czaks
e1d4b9edf1 Merge branch 'master' of https://github.com/savetheinternet/Tinyboard
Conflicts:
	inc/functions.php
2013-07-26 13:47:53 -04:00
Michael Foster
5359769088 Fix markup overlapping. Issue #124 2013-07-26 11:01:13 -04:00
czaks
495c6fa846 Merge branch 'master' of https://github.com/savetheinternet/Tinyboard
Conflicts:
	post.php
2013-07-18 15:19:03 -04:00
Michael Foster
34b5f62600 Themes edit: Split "post" into two seperate actions: "post" (replies) and "post-thread". And add a $board variable. 2013-07-18 12:06:26 -04:00
czaks
49f968fa5d Merge branch 'master' of https://github.com/kaja47/Tinyboard 2013-07-16 13:40:56 -04:00
czaks
6152ed43bd Merge branch 'master' of https://github.com/savetheinternet/Tinyboard
Conflicts:
	install.php
	templates/index.html
	templates/thread.html
2013-07-16 13:02:13 -04:00
Michael Foster
390e529717 More ban stuff: Show whether or not user has "seen" a ban yet in the ban list and on IP address pages. Purge useless expired ban records. 2013-07-16 08:50:39 -04:00
Michael Foster
4340e74569 $config['require_ban_view']: Force users to view the "You are banned" page at least once before letting a ban disappear naturally. 2013-07-16 06:33:37 -04:00
Michael Foster
9825d8611f Outputting thread subject in header/title (issue #122) 2013-07-16 02:48:20 -04:00
Michael Foster
5c7e328f5d Add "write" (files written to) to debug section 2013-07-16 01:21:06 -04:00
czaks
7503a1a7b6 js i18n: finish implementation with addition of the compiled locale strings file to additional javascripts 2013-07-03 00:25:32 -04:00
K
1b3852c8b4 Add support for 4chan-compatible json API. 2013-07-02 19:52:29 +02:00
czaks
a139c44a80 Merge branch 'master' of https://github.com/savetheinternet/Tinyboard
Conflicts:
	templates/page.html
2013-06-21 16:41:39 -04:00
Michael
bab6548929 Merge pull request #116 from Macil/hardlimits
Adds image_hard_limit and reply_hard_limit options
2013-06-18 10:46:25 -07:00
Michael
a087ab72db Merge pull request #115 from Macil/miscfixes
Miscellaneous fixes
2013-06-18 10:45:13 -07:00
Macil Tech
aa881058a3 Adds image_hard_limit and reply_hard_limit options.
Also reworks the numPosts() function and uses it elsewhere too.
2013-06-18 12:21:41 -05:00
Macil Tech
b872cf55e4 m and n dash fix 2013-06-18 12:07:30 -05:00
Macil Tech
01f1c89f7c Fix "Undefined index: sticky" and "locked" errors on new thread creation. 2013-06-18 12:00:26 -05:00
Macil Tech
42aec516f6 Fix openBoard and boardTitle functions using same caching keys.
Added getBoardInfo function that's used by both of the above functions,
and can get a board's info without loading it.
2013-06-18 11:13:43 -05:00
czaks
f6701dfb74 Merge branch 'master' of https://github.com/savetheinternet/Tinyboard 2013-05-26 17:53:00 -04:00
Fredrick
0b4487aafa Fix truncation issue by no longer using HTML entities for Unicode characters 2013-03-17 07:00:55 -04:00
Marcin Łabanowski
cf49306488 Merge branch 'master' of https://github.com/savetheinternet/Tinyboard 2013-01-28 13:29:21 +01:00
Michael
18e86d6fc8 Merge pull request #97 from Macil/indexstuff
index() rework to use only one cache key
2013-01-27 21:32:01 -08:00
Macil Tech
3ba2bb4aa1 Reworked index() slightly to make caching simpler and only use one key. 2013-01-27 21:32:22 -06:00
Marcin Łabanowski
5cc2a67e63 Merge branch 'master' of https://github.com/savetheinternet/Tinyboard into HEAD
Conflicts:
	mod.php
2013-01-23 18:58:38 +01:00
Michael Save
c417e48d78 Bugfix: Anti-bot check not allowing posting from second page 2013-01-24 04:56:06 +11:00
Michael Save
2ef4d511bd Em dash and en dash mix-up. Issue #88 2013-01-24 03:37:15 +11:00
Marcin Łabanowski
ec577baccd Merge branch 'master' of https://github.com/savetheinternet/Tinyboard 2013-01-23 17:19:31 +01:00
Michael Save
1049e5f57e No point using JSON as Cache class already supports objects 2013-01-23 13:42:14 +11:00
Michael Save
df6ec1c1f9 I'm dumb 2013-01-23 12:48:23 +11:00
Michael Save
656fab9f8e Hopefully a final fix for caching thread previews. This feature was previous disabled because of a bug/confliction. 2013-01-23 12:43:46 +11:00
Marcin Łabanowski
6990cab263 Merge branch 'master' of https://github.com/savetheinternet/Tinyboard 2013-01-21 13:17:13 +01:00
Michael Save
4f58617507 Copyright and license update for 2013. 2013-01-20 21:23:46 +11:00
Marcin Łabanowski
f6b7b3901a Merge branch 'master' of https://github.com/savetheinternet/Tinyboard 2013-01-19 16:23:02 +01:00
Michael
b91845ea7e Merge pull request #93 from Macil/image_reject_repost_in_thread
Add image_reject_repost_in_thread option
2013-01-18 23:03:16 -08:00
Macil Tech
7871d30bda Incorrect parameter type.
The parameter was bound with the wrong type. I guess the type isn't
enforced judging by how the code still seemed to work, but it probably
should be fixed.
2013-01-19 00:39:30 -06:00
Macil Tech
87b1498d23 Insert into posts table using named columns.
Makes it easier to update the posts table schema.
2013-01-19 00:39:29 -06:00
Macil Tech
15043b39cf Add image_reject_repost_in_thread option 2013-01-19 00:25:24 -06:00
Marcin Łabanowski
de696ba11b url_ads: fix it not working 2013-01-16 19:49:26 +01:00
szalej
7f277c3833 Update inc/functions.php
url ads
2013-01-16 11:34:31 +01:00
szalej
a5eba94538 Update inc/functions.php
Hide Referrer (nullrefer.com)
2013-01-16 10:50:20 +01:00
Marcin Łabanowski
bf164275de Facilitate creation and usage of boards with "." and "+" characters in name.
This commit is mostly work in progress, will be rewritten.
2013-01-09 08:33:40 +01:00
Michael Save
91a4832fd6 Added new events: lock and load-config 2012-11-19 10:28:23 +11:00
Michael Save
61101dd1f4 Something is broken. Removed that for now. 2012-09-28 04:53:07 +10:00
Michael Save
9edc856c92 Quick fix relating to last commit 2012-09-28 04:50:25 +10:00
Michael Save
1a02cfbc6a Bugfix: Caching complications with thread preview 2012-09-28 04:46:20 +10:00
Michael Save
266a9ea53f Merge branch 'master' of git://github.com/Yousha/Tinyboard into yousha 2012-08-27 02:40:50 +10:00
Yousha
f587565386 Improved. 2012-08-30 20:05:27 +04:30
Sebastian Stal
ae4ff224a1 Share antibot hash across index pages
fixes an issue with slow boards and multi-page indexes
2012-07-04 10:17:51 -07:00
Michael Save
e2fb182ef0 Bugfix: deleting OP image didn't rebuild 2012-05-28 17:08:09 +10:00
Michael Save
1da8694044 [move] 2012-05-19 18:27:45 +10:00
Michael Save
829269324f Bugfix: with disabling config[markup_urls] 2012-05-08 23:59:54 +10:00
Michael Save
34380d247a a lot more improvements 2012-05-06 01:33:10 +10:00
Michael Save
2448900bfe Bugfix: with previous commit 2012-05-05 18:12:20 +10:00
Michael Save
d44636ca56 Bugfix: purge() while in CLI-mode 2012-05-05 18:10:45 +10:00
Michael Save
fff7a05947 Bugfix: with previous commit 2012-05-05 18:07:28 +10:00
Michael Save
3091bb8f2b Bugfix: with third-party scripts that use create_antibot() 2012-05-05 18:07:20 +10:00
Michael Save
ee40a90d69 Bugfix: with previous commit 2012-04-21 12:17:59 +10:00
Michael Save
fe8f1221ce Bugfix: with previous commit 2012-04-19 23:09:51 +10:00
Michael Save
709b84a9af Bugfix: purge() while in CLI-mode 2012-04-19 23:08:24 +10:00
Michael Save
31c4d34aca Bugfix: purge() while in CLI-mode 2012-04-19 23:07:52 +10:00
Michael Save
d77659f6f8 Bugfix: did not purge all antispam inputs 2012-04-19 01:34:00 +10:00
Michael Save
de4a7783f8 Bugfix: did not purge all antispam inputs 2012-04-19 01:19:10 +10:00
Michael Save
6ccce83f4e Bugfix: with previous commit 2012-04-17 08:16:36 +10:00
Michael Save
165a1ec3f1 Bugfix: with third-party scripts that use create_antibot() 2012-04-17 08:06:25 +10:00
Michael Save
c954dcc980 Bugfix: with DNSBL 2012-04-15 10:28:31 +10:00
Michael Save
fe9b067bf9 Bugfix: with DNSBL 2012-04-15 10:21:43 +10:00
Michael Save
b2b52633f7 start on mod interface rewrite 2012-04-13 02:11:41 +10:00
Michael Save
17a56af9a7 code cleanup 2012-04-13 00:18:19 +10:00
Michael Save
ef6f5a2e48 Removed board.id. Use the board URI/name at the key instead. 2012-04-12 23:23:47 +10:00
Michael Save
0f984ebf77 Improved Tinyboard anti-bot/spam filter. See large comment in inc/config.php for details. 2012-04-12 21:56:01 +10:00
Michael Save
b4bafb2297 better anti-bot check 2012-04-12 17:20:49 +10:00
Michael Save
c98a8afc1d large cleanup 2012-04-12 02:49:22 +10:00
Michael Save
fa38c0fd6b Bugfix: some tracked post citations were not being purged upon thread deletion 2012-04-11 17:36:34 +10:00
Michael Save
9267dbbaa8 last commit broke some markup syntax 2012-04-11 12:19:53 +10:00
Michael Save
f5698dee0e simpler markup regular expressions 2012-04-11 06:10:50 +10:00
Michael Save
41355cbd44 moved $OP to $post['op']. post() now has one argument instead of two. 2012-04-11 02:18:06 +10:00
Michael Save
6bf8952388 small cleanup 2012-04-11 01:18:38 +10:00
Michael Save
c001e67352 inc/contrib -> inc/lib 2012-04-09 20:52:26 +10:00
Michael Save
fb65f930ed bugfix: PHP notices when uploading a non-image file 2012-04-09 20:46:57 +10:00
Michael Save
15a466e312 using HTTP/1.1, not HTTP/1.0 for PURGE 2012-04-03 01:06:38 +10:00
Michael Save
779b4cf984 Moved messy $config initialization from inc/config.php to inc/functions.php. 2012-03-21 12:00:00 +11:00
Michael Save
347efb9484 Customizable markup syntax. 2012-03-21 11:57:30 +11:00
Michael Save
33116a07a1 Use "events" in more functions. Documentation coming soon. 2012-03-19 05:43:55 +11:00
Michael Save
b93d735b7d New feature: "events". Will eventually replace/extend "themes". 2012-03-19 02:41:06 +11:00
Michael Save
58bd751773 Small DNSBL fix 2012-03-18 06:58:20 +11:00
Michael Save
1e5349af97 Proper DNSBL implementation. Very sexy. 2012-03-18 06:34:34 +11:00
Michael Save
69068c84bb permissions bug 2012-03-17 14:22:43 +11:00
Michael Save
c6741a8abd h 2012-03-15 14:19:37 +11:00
Michael Save
d438eebafa cache DNS 2012-03-15 14:13:43 +11:00
Michael Save
2e34f1a3d6 use `host` if available for standard DNS lookups too 2012-03-15 14:00:25 +11:00
Michael Save
9a133e87e5 Multiple changes.
Added $config['minify_js'] to compress Javascript with minify
Added $config['additional_javascript_compile'] to put all Javascript files/addons into one file.
Moved delete/report post controls to a shared template.
Ability to have different Javascript files between boards.
2012-03-14 21:48:31 +11:00
Michael Save
30439fb51e less warnings in CLI mode 2012-03-14 15:38:28 +11:00
Michael Save
52f23de783 don't accept just 'http://' etc as a URL 2012-03-11 11:31:05 +11:00
Michael Save
6551bd6de7 URL regex fix 2012-03-11 11:29:33 +11:00
Michael Save
324c7cd906 fixed encoding error for extended ASCII characters 2012-03-08 01:57:10 +11:00
Michael Save
97e85eced8 typo... 2012-02-18 01:15:00 +11:00
Michael Save
d6408796fb small bug 2012-02-18 01:14:13 +11:00
Michael Save
12a2ccece8 moved hasPermission() to functions.php 2012-02-16 23:32:28 +11:00
Michael Save
e4e23b995c config[blotter] = false when unset 2012-02-06 17:49:05 +11:00
Michael Save
0c505c789a false "Your browser sent an invalid or no HTTP referer" error 2012-02-02 10:24:48 +11:00
Michael Save
12968b99e4 Don't auto-unicode on links 2012-01-31 05:57:25 +11:00
Michael Save
a1f7d8fe14 allow more punctuation after URLs 2012-01-27 03:58:38 +11:00
Michael Save
ac1f36bd16 wordfilters (non-regex) should be case-insensitive 2012-01-26 18:35:16 +11:00
Michael Save
4b170b1336 prohibit using same anti-bot hashes across different boards/threads 2012-01-20 02:37:53 +11:00
Michael Save
0079d8e2d3 HTML fix 2012-01-09 14:28:54 +11:00
Michael Save
fefa6fd23b trailing \n after inline replying with minify_html enabled 2012-01-07 11:55:25 +11:00
Michael Save
e8bd757d5d use &#010; when new lines are a must if minify_html is enabled 2012-01-07 11:54:25 +11:00
Michael Save
51af59aef4 allow closing bracket after citation 2012-01-06 06:44:51 +11:00
Michael Save
8834552b37 allow closing bracket after citation 2012-01-06 06:44:12 +11:00
Michael Save
4c5ca69a54 do not count puncutation after links as part of the uRL 2012-01-06 06:34:21 +11:00
Michael Save
c732caf1c2 PHP warnings in newer PHP versions when loading config 2011-12-30 00:36:20 +11:00
Savetheinternet
5695b2fd07 removed debug crap 2011-12-15 03:22:24 +11:00
Savetheinternet
752899dff6 use raw SHA1 to calculate anti-spam inputs 2011-12-08 14:44:33 +11:00
Savetheinternet
fc48b210a3 use multibyte-aware mb_strlen() instead of strlen(); fixed issue #8) 2011-12-07 17:47:36 +11:00
Savetheinternet
fbc8ba4d73 ... 2011-12-06 17:24:30 +11:00
Savetheinternet
2623b261c8 bugfix: posting from another page would return "invalid referrer" errors 2011-12-06 17:21:26 +11:00
Savetheinternet
1f219c3e95 fixed syslog() for CLI mode 2011-12-06 03:04:46 +11:00
Savetheinternet
879eaac6a8 Fixed bug affecting Safari. Safari seems to like to send the client-side part of URLs (#) in the referrer. 2011-12-05 22:59:51 +11:00
Savetheinternet
d63e724cc1 rebuild thread after rebuilding post 2011-12-05 13:21:49 +11:00
Savetheinternet
ec1c5af611 track cites (remove broken links after a post 404s) 2011-12-05 13:17:34 +11:00
Savetheinternet
1f218e049d use NULL in database where possible 2011-12-05 10:47:30 +11:00
Savetheinternet
e2d9ebfd8c use 0.0.0.0 when in CLI mode 2011-12-03 15:54:30 +11:00
Savetheinternet
bca77515aa ... 2011-12-03 15:45:24 +11:00
Savetheinternet
a1f7adb3d6 $rebuild_after switch for deleteFile() 2011-12-03 15:41:14 +11:00
Savetheinternet
14c1c8c354 generate_tripcode() rewrite 2011-12-03 15:11:15 +11:00
Savetheinternet
8e10f8c28a Avoid DNS timeouts by using host and cache if available 2011-12-03 11:52:31 +11:00
Savetheinternet
b12fe41f3e Automatic transformation of IPv6-IPv4 addresses (::ffff:0.0.0.0) should not be an optional feature. 2011-11-25 03:02:34 +11:00
Savetheinternet
efd5d4a596 Use LIKE instead of REGEX for wildcard bans 2011-11-23 22:24:48 +11:00
Savetheinternet
008d71dd23 Minor bug causing range bans to not get purged 2011-11-23 21:36:40 +11:00
Savetheinternet
3667c56e66 "*" in range bans should match everything 2011-11-23 21:33:50 +11:00
Savetheinternet
f7d30bd336 Use template instead of inline HTML for ban messages. 2011-11-23 16:12:19 +11:00
Savetheinternet
8d73ddb731 CIDR netmask bans 2011-11-22 00:25:00 +11:00
Savetheinternet
f8de816234 Better SSL support. 2011-11-20 16:19:00 +11:00
Savetheinternet
d4410324b2 More descriptive error messages. 2011-11-20 03:38:57 +11:00
Savetheinternet
d67ad69c83 "Shadow thread" automated reply with thread moving. 2011-11-19 03:40:23 +11:00
Savetheinternet
95ade9c2a6 Ability to "move" a thread to another board (2/3 done) 2011-11-19 01:35:22 +11:00
Savetheinternet
d6dbd9ee9a syslog() 2011-11-18 23:39:13 +11:00
Savetheinternet
22515cb074 Temporary fix for some gettext issues. 2011-11-17 03:13:49 +11:00
Savetheinternet
71c0b13e4a XSS/bug with last commit to utf8tohtml(). 2011-11-17 01:22:25 +11:00
Savetheinternet
a6ff9bba23 Replaced buggy UTF-8 -> HTML conversion with mb_encode_numericentity() 2011-11-17 01:06:00 +11:00
Savetheinternet
83323f8248 Attempt at using HTML5 microdata 2011-11-16 20:41:16 +11:00
Savetheinternet
37ccf509cc Fixed issue #26 (text-based flood filter should not include blank posts) 2011-11-16 19:59:21 +11:00
Savetheinternet
f73d2791f2 Replace tabs with 8 spaces 2011-11-16 15:54:35 +11:00
Savetheinternet
b30290a0a1 Fixed bug particularly effecting new installations 2011-11-09 13:44:34 +11:00
Savetheinternet
b3741f978d Started on internationalization (i18n) 2011-10-11 21:49:14 +11:00
Savetheinternet
ac92c8fb78 Missing global for Tinyboard vesion number 2011-10-11 03:00:04 +11:00
Savetheinternet
9726a710bc Bug fix: HTML files for old pages were not being deleted 2011-10-11 02:57:37 +11:00
Savetheinternet
af3f5d9371 added "bumplocking" feature 2011-10-10 22:37:39 +11:00
Michael D. Reiley
81a41324d9 Footer version string pulled from .installed 2011-10-10 03:40:31 -07:00
Savetheinternet
8cbdc85896 remove the retard function html_entity_decode_utf8(). not sure why seisatsu added it in the first place. 2011-10-10 21:06:39 +11:00
Savetheinternet
214281d84c cache bug 2011-10-09 16:26:34 +11:00
Michael D. Reiley
bdbc1db038 Forgot a global in boardTitle function. 2011-10-08 12:56:38 -07:00
Savetheinternet
b3471fcc72 cache bug 2011-10-09 04:35:50 +11:00
Savetheinternet
36019f03b6 bugfix: Tinyboard was trying to PURGE /tmp files 2011-10-09 02:58:56 +11:00
Savetheinternet
e172aa2c0c additional cache 2011-10-08 17:46:48 +11:00
Savetheinternet
82edb9cbbf memcached, APC, xcache 2011-10-07 16:51:19 +11:00