-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v1.10-dev'
- Loading branch information
Showing
409 changed files
with
5,991 additions
and
14,434 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,14 +7,15 @@ recommend to update to a current version whenever possible. | |
|
||
On regular basis the following versions of **phpwcms** are supported: | ||
|
||
| Version | Supported | | ||
|-----------| ------------------ | | ||
| >= 1.9.33 | :white_check_mark: | | ||
| < 1.9.33 | :x: | | ||
| Version | Supported | | ||
|--------------| ------------------ | | ||
| >= 1.10.2 | :white_check_mark: | | ||
| >= 1.9.38 | :white_check_mark: | | ||
| < 1.9.38 | :x: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
If you find a vulnerability you can report it by email to <[email protected]>. | ||
|
||
Mostly I am ok with opening an [issue](https://github.com/slackero/phpwcms/issues) | ||
if the vulnerability isn't accessible in the frontend of **phpwcms**. | ||
if the vulnerability isn't accessible in the frontend of **phpwcms**. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
<?php | ||
/** | ||
* phpwcms content management system | ||
* | ||
* @author Oliver Georgi <[email protected]> | ||
* @copyright Copyright (c) 2002-2024, Oliver Georgi | ||
* @license http://opensource.org/licenses/GPL-2.0 GNU GPL-2 | ||
* @link http://www.phpwcms.org | ||
* | ||
**/ | ||
|
||
$phpwcms = array(); | ||
require_once '../include/config/conf.inc.php'; | ||
|
@@ -14,7 +23,7 @@ | |
$spaf_char_num = empty($_GET['length']) ? false : intval($_GET['length']); | ||
|
||
if($spaf_char_num) { | ||
$spaf_obj->char_num = $spaf_char_num > 15 ? 15 : $spaf_char_num; | ||
$spaf_obj->char_num = min($spaf_char_num, 15); | ||
} | ||
|
||
$spaf_obj->streamImage(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.