-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update to php8.2, update phpunit, fix tests * fix * upd symfony * fixes DI, cache, smarty * small fixes * removed exceptions in json_decode and json_encode, changelog, change version * fix cache application, upd ApplicationInterface, delete final in Application, fix spaces * fix spaces --------- Co-authored-by: Yury Bushenko <[email protected]>
- Loading branch information
Showing
277 changed files
with
12,164 additions
and
12,512 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
composer.lock | ||
*.iml | ||
.idea | ||
*.cache |
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
117 changes: 57 additions & 60 deletions
117
htdocs/admin/tools/vendor/ckeditor/samples/old/assets/posteddata.php
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,60 +1,57 @@ | ||
<!DOCTYPE html> | ||
<?php | ||
/* | ||
Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. | ||
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
*/ | ||
?> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Sample — CKEditor</title> | ||
<link rel="stylesheet" href="sample.css"> | ||
<meta name="description" content="Try the latest sample of CKEditor 4 and learn more about customizing your WYSIWYG editor with endless possibilities."> | ||
</head> | ||
<body> | ||
<h1 class="samples"> | ||
CKEditor — Posted Data | ||
</h1> | ||
<table border="1" cellspacing="0" id="outputSample"> | ||
<colgroup><col width="120"></colgroup> | ||
<thead> | ||
<tr> | ||
<th>Field Name</th> | ||
<th>Value</th> | ||
</tr> | ||
</thead> | ||
<?php | ||
|
||
if (!empty($_POST)) | ||
{ | ||
foreach ( $_POST as $key => $value ) | ||
{ | ||
if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) ) | ||
continue; | ||
|
||
if ( get_magic_quotes_gpc() ) | ||
$value = htmlspecialchars( stripslashes((string)$value) ); | ||
else | ||
$value = htmlspecialchars( (string)$value ); | ||
?> | ||
<tr> | ||
<th style="vertical-align: top"><?php echo htmlspecialchars( (string)$key ); ?></th> | ||
<td><pre class="samples"><?php echo $value; ?></pre></td> | ||
</tr> | ||
<?php | ||
} | ||
} | ||
?> | ||
</table> | ||
<div id="footer"> | ||
<hr> | ||
<p> | ||
CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a> | ||
</p> | ||
<p id="copy"> | ||
Copyright © 2003-2020, <a class="samples" href="https://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved. | ||
</p> | ||
</div> | ||
</body> | ||
</html> | ||
<!DOCTYPE html> | ||
<?php | ||
/* | ||
Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. | ||
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
*/ | ||
?> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Sample — CKEditor</title> | ||
<link rel="stylesheet" href="sample.css"> | ||
<meta name="description" content="Try the latest sample of CKEditor 4 and learn more about customizing your WYSIWYG editor with endless possibilities."> | ||
</head> | ||
<body> | ||
<h1 class="samples"> | ||
CKEditor — Posted Data | ||
</h1> | ||
<table border="1" cellspacing="0" id="outputSample"> | ||
<colgroup><col width="120"></colgroup> | ||
<thead> | ||
<tr> | ||
<th>Field Name</th> | ||
<th>Value</th> | ||
</tr> | ||
</thead> | ||
<?php | ||
|
||
if (!empty($_POST)) | ||
{ | ||
foreach ( $_POST as $key => $value ) | ||
{ | ||
if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) ) | ||
continue; | ||
|
||
$value = htmlspecialchars( (string)$value ); | ||
?> | ||
<tr> | ||
<th style="vertical-align: top"><?php echo htmlspecialchars( (string)$key ); ?></th> | ||
<td><pre class="samples"><?php echo $value; ?></pre></td> | ||
</tr> | ||
<?php | ||
} | ||
} | ||
?> | ||
</table> | ||
<div id="footer"> | ||
<hr> | ||
<p> | ||
CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a> | ||
</p> | ||
<p id="copy"> | ||
Copyright © 2003-2020, <a class="samples" href="https://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved. | ||
</p> | ||
</div> | ||
</body> | ||
</html> |
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.