flatpressblog / flatpress

FlatPress is a lightweight, easy-to-set-up flat-file blogging engine.
https://flatpress.org
GNU General Public License v2.0
181 stars 58 forks source link

BBcode plugin | No file or image selection possible after activating the "Allow BBcode in comments" option #391

Closed Fraenkiman closed 3 months ago

Fraenkiman commented 3 months ago

Hello everyone,

the template of the BBcode plugin generates the following PHP warnings:

Warning: Undefined array key "attachs_list" in /var/www/html/flatpress-master-1380/fp-content/cache/e93fccb09cf8b04111b9595da102f3f4^798d899030a5200975a849d07ec9e4466154f56d_0.plugin.bbcodetoolbar.php on line 79

Warning: Attempt to read property "value" on null in /var/www/html/flatpress-master-1380/fp-content/cache/e93fccb09cf8b04111b9595da102f3f4^798d899030a5200975a849d07ec9e4466154f56d_0.plugin.bbcodetoolbar.php on line 79

Warning: Undefined array key "attachs_list" in /var/www/html/flatpress-master-1380/fp-content/cache/e93fccb09cf8b04111b9595da102f3f4^798d899030a5200975a849d07ec9e4466154f56d_0.plugin.bbcodetoolbar.php on line 79

Warning: Attempt to read property "value" on null in /var/www/html/flatpress-master-1380/fp-content/cache/e93fccb09cf8b04111b9595da102f3f4^798d899030a5200975a849d07ec9e4466154f56d_0.plugin.bbcodetoolbar.php on line 79

Warning: Undefined array key "images_list" in /var/www/html/flatpress-master-1380/fp-content/cache/e93fccb09cf8b04111b9595da102f3f4^798d899030a5200975a849d07ec9e4466154f56d_0.plugin.bbcodetoolbar.php on line 84

Warning: Attempt to read property "value" on null in /var/www/html/flatpress-master-1380/fp-content/cache/e93fccb09cf8b04111b9595da102f3f4^798d899030a5200975a849d07ec9e4466154f56d_0.plugin.bbcodetoolbar.php on line 84

Warning: Undefined array key "images_list" in /var/www/html/flatpress-master-1380/fp-content/cache/e93fccb09cf8b04111b9595da102f3f4^798d899030a5200975a849d07ec9e4466154f56d_0.plugin.bbcodetoolbar.php on line 84

Warning: Attempt to read property "value" on null in /var/www/html/flatpress-master-1380/fp-content/cache/e93fccb09cf8b04111b9595da102f3f4^798d899030a5200975a849d07ec9e4466154f56d_0.plugin.bbcodetoolbar.php

Although they are located in the respective directories, they cannot be selected in the "File" and "Image" drop-down menus.

Screenshot 2024-05-05 144427

Screenshot 2024-05-05 144447

Screenshot 2024-05-05 171628

Reproducibility:

  1. log in to the admin area
  2. allow BBCode in the comments
  3. create a new entry or a new static page

Screenshot 2024-05-05 171642

FlatPress-Default
$fp_config = array ('bbcode' => array ('escape-html' => true, 'comments' => false, 'editor' => true, 'url-maxlen' => 40,));

After activating the option "Allow BBcode in comments"
$fp_config = array ('bbcode' => array ('escape-html' => true, 'comments' => true, 'editor' => false, 'url-maxlen' => 40,));

fp-content/config/settings.conf.php If you manually set the value'editor' => true, the problem is no longer visible.

Conditions: PHP 8.1.28

With best regards Frank

Fraenkiman commented 3 months ago

Closed with 3b6ddf1