1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 12:48:24 +01:00

13917 Commits

Author SHA1 Message Date
Cameron
16354b3da0 Bootstrap 5 template tweaks. 2022-04-06 14:21:35 -07:00
Cameron
214fcea1cd Bootstrap 5 theme tweaks. 2022-04-06 13:07:49 -07:00
Cameron
925fe0b9fc Bootstrap styling tweaks. 2022-04-06 12:10:22 -07:00
Cameron
02a7e08902 Fixes #4750 - News image placeholder. Adds another news-grid layout. 2022-04-06 12:09:58 -07:00
Cameron
af0a6a5924 Issue #4748, Issue #4514 2022-04-06 10:15:11 -07:00
Cameron
9ed3007b71 Test fixes. 2022-04-06 08:44:45 -07:00
Cameron
196f952db8 Closes #4514 Theme developers can now set the default style, just as they would with the default layout. 2022-04-06 08:37:13 -07:00
Cameron
8df5e187b3 Fix for test. 2022-04-06 06:39:45 -07:00
Cameron
6eff4cb5f7 Closes #4748 - Bootstrap5 Theme enhancements. Bootswatch 5. 2022-04-05 19:49:08 -07:00
Cameron
45372f285c Fixes #4747 - wysiwyg editor value retention. 2022-04-05 09:56:25 -07:00
Cameron
248a98fffc Fixes #4743 - Forum PHP Notice and minor cleanup. 2022-04-04 18:32:06 -07:00
Cameron
ba82fec626 Closes #4745 - check for xml/install.xml during plugin installation. 2022-04-04 18:30:33 -07:00
Cameron
412b0b2efe Reducing e_SECURITY_LEVEL to 3 with disable ValidateRemoteAddr. 2022-04-04 14:47:53 -07:00
Cameron
22b9bd1721 Updated e107.org urls. 2022-04-04 14:46:42 -07:00
Cameron
55980a29a8 Generated PHPDoc for all classes in e107_handlers where one was missing. toNumber() updated to always return int or float. 2022-04-04 10:54:24 -07:00
Cameron
813f2bf38f Fix for mod-security being triggered by Media Manager wildcard filter 2022-04-02 13:03:01 -07:00
Cameron
da7c1b087d
Merge pull request #4742 from Jimmi08/correct-url-after-editing-post-in-paginated-topic
Fixes #4245 stay on correct page after editing paginated topic
2022-04-02 12:43:05 -07:00
Cameron
bf10c58c50
Merge pull request #4741 from Jimmi08/user-last-visit-shortcodes
Fixes #4665 correct user last visit information
2022-04-02 12:41:52 -07:00
Cameron
e801b02dee Closes #4744 - Media-Manager default set to Grid. New CSS grid added. Extra tests added for toGlyph(). Added wildcard mime-type filters in Media-Manager. 2022-04-02 09:34:06 -07:00
Jimmi08
6d54d74918 #4245 stay on correct page after editing paginated topic
CLOSES #4245

Tested with PHP 8.1

Description:
When you edit a post on the next page (with the paginated topic), after saving you are redirected to the first page and you don't see that edited message then.

Changes

added p parameter to edit URL in post options and edit image shortcodes
used this parameter when redirecting after reply is updated
it is not needed when updating the thread because you are always on the first page
added check if it is the first page, then the parameter is not used (to have the same behavior as with thread).
Tested

PHP 7.4. + PHP 8
core bootstrap5 theme and custom theme with custom forum templates
Important Note::
Updating/Fixing postoptions are/will be separated issues (more than one). It needs some changes but they are not related to this issue. So now just changed links, nothing more.

Enhancement Note: $_GET['p'] could be replaced by saving the actual page in post data (like thread works - that information should be available) but it is too complicated now for me and there is a bigger risk that something will not work. Free do it this way if you have time.
2022-04-02 18:00:19 +02:00
Jimmi08
2fa73df934 #4665 correct user last visit information
CLOSES #4665
2022-04-02 14:57:37 +02:00
Cameron
9e8e7966a5 Fixes #4740 - news category link on print pages. 2022-04-01 12:00:37 -07:00
Cameron
91f90202a4
Merge pull request #4732 from Jimmi08/load-bbcode-buttons-only-if-HTML-is-allowed-for-user
Fixes #4708 load bbcode buttons only if posting HTML is allowed for user
2022-04-01 11:13:31 -07:00
Cameron
c510885b43
Merge pull request #4735 from Jimmi08/rank-issue-for-first-level
Fixes #4670 ranks issue for first level
2022-04-01 11:06:05 -07:00
Cameron
dbde19e872
Merge pull request #4734 from Jimmi08/login-error-message-is-loaded-2x
Fixes #3470 login error message is loaded 2x
2022-04-01 11:03:38 -07:00
Cameron
2d0e52c16a
Merge pull request #4733 from Jimmi08/canonical-urls-on-topic-pages
Fixes #4712 canonical URLs for paged forum topic
2022-04-01 11:02:24 -07:00
Cameron
33d87efd20
Merge pull request #4730 from Jimmi08/master
Closes #4659 forum main admin as silent moderator
2022-04-01 10:57:58 -07:00
Cameron
025ff07aab Fixes #4737 Removal of type="text/javascript" and type="text/css" 2022-03-31 08:24:34 -07:00
Jimmi08
79a300e7bb #4670 ranks issue for first level
CLOSES #4670
2022-03-31 12:55:32 +02:00
Jimmi08
c431a677fe #3470 login error message is loaded 2x
CLOSES #3470
2022-03-31 12:48:35 +02:00
Jimmi08
da7f88f644 #4712 canonical URLs for paged forum topic
CLOSES #4712
2022-03-31 12:42:35 +02:00
Jimmi08
64dcf0c056 #4665 load bbcode buttons only if HTML is allowed for user
CLOSES #4665

Tested scenarios:

- site wysiwyg on, html access  -  result tinymce
- site wysiwyg on,  no html access  - result bbcodes
- site wysiwyg off,  forum wysiwyg on,  no html access  - result bbcodes
- site wysiwyg off,  forum wysiwyg on,  html access  - result tinymce

It worked like this before too, but bbcodes were always rendered (not visible with tinymce)
2022-03-31 12:22:04 +02:00
Jimmi08
95a6cd2a3b #4659 forum main admin as silent moderator
- without displaying in moderator list (if they are not forum moderators directly)

CLOSES #4659
2022-03-30 22:17:41 +02:00
Cameron
21fa07ec3b
Merge pull request #4723 from Jimmi08/patch-2
Fixes #4715 Forum - correct display of Last Post info
2022-03-30 12:38:52 -07:00
Cameron
8f8ff160cc
Merge pull request #4729 from Jimmi08/patch-4
Fixes #4724 forum - possibility to add forum ID as column in admin area.
2022-03-30 12:35:19 -07:00
Cameron
35eab787be Composer update on e107_tests 2022-03-29 16:24:17 -07:00
Cameron
f922456a8f Fixes #4706 'quote' bbcode in TinyMce and fixes fatal error under PHP 8.1 (LAN_WROTE) 2022-03-29 13:59:25 -07:00
Jimako
c622717863
#4724 forum - possibility to add forum ID as column
FIX #4724
2022-03-29 21:45:48 +02:00
Cameron
0c14d6d3f5 Updated e_admin.php example in 'blank' plugin and optimized linkswords/e_admin.php and enabled the field for Pages. 2022-03-29 12:22:12 -07:00
Jimako
ec8108338b
correct display of Last Post info
#FIX 4715
2022-03-29 10:47:58 +02:00
Cameron
a4b4d75e29
Merge pull request #4721 from Jimmi08/patch-1
Fixes #4570 Recalculation forum replies in Tools
2022-03-28 11:26:52 -07:00
Cameron
dd62412c56
Merge pull request #4632 from brwnie/patch-1
Update theme.html to use footer navigation links.
2022-03-28 11:25:49 -07:00
Cameron
a14bb5496d Allow theme developers to add a link class to the default site disclaimer. 2022-03-28 10:07:41 -07:00
Cameron
a6c4c4c9d0 Syntax fix for PHP 5.6 2022-03-28 08:52:56 -07:00
Jimako
f84386dce8
Fix for Recalculation forum replies in Tools
Fix #4570
2022-03-28 08:42:03 +02:00
Cameron
e29096ced4 Closes #4720 - Enhancement - linkwords stats in the news admin area. 2022-03-27 16:58:38 -07:00
Cameron
37aa4dc0e7
Merge pull request #4718 from Jimmi08/patch-17
Fixes #3974 Forum permissions for creating topics
2022-03-27 14:01:45 -07:00
Cameron
fa187da52b
Merge pull request #4717 from Jimmi08/patch-16
Fixes #4658 access / check for access to forum type in forum post
2022-03-27 13:59:39 -07:00
Cameron
e1059b8001 Fixes #4711 - BS4/5 button classes in TinyMce. 2022-03-27 12:10:41 -07:00
Jimako
e514a43e54
Fix for Forum permissions for creating topics
FIX #3974
2022-03-27 20:44:19 +02:00