Translated using Weblate (Slovenian)
[phpmyadmin.git] / scripts / decode_bug.php
blobec6f2207587e0460ced61dbfdae3dc7cf040e8cf
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Parser bug report decoder
6 * This is the parser bug decoder system
7 * Throw the bug data in the query box, and hit submit for output.
9 * Copyright 2002 Robin Johnson <robbat2@users.sourceforge.net>
11 * @package PhpMyAdmin-debug
13 use PMA\libraries\PMA_String;
15 /**
16 * Displays the form
19 <!DOCTYPE HTML>
20 <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" dir="ltr">
22 <head>
23 <link rel="icon" href="favicon.ico" type="image/x-icon" />
24 <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
25 <meta charset="iso-8859-1" />
26 <title>phpMyAdmin - Parser bug report decoder</title>
27 <style type="text/css">
28 <!--
29 body, p {
30 font-family: Arial, Helvetica, sans-serif;
31 font-size: medium;
33 h1 {
34 font-family: Verdana, Arial, Helvetica, sans-serif;
35 font-size: large;
36 font-weight: bold;
37 color: #000066;
39 //-->
40 </style>
41 </head>
44 <body bgcolor="#FFFFFF">
45 <h1>Parser bug report decoder</h1>
46 <br />
48 <form method="post" action="./decode_bug.php">
49 <input type="hidden" name="bar" value="<?php echo rand(); ?>" />
50 Encoded bug report:<br />
51 <textarea name="bug_encoded" cols="72" rows="10"></textarea>
52 <br /><br />
53 <input type="submit" />
54 </form>
55 <hr />
57 <?php
58 /**
59 * If the form has been submitted -> decodes the bug report
62 /**
63 * Display the decoded bug report in ASCII format
65 * @param string $textdata the text data
67 * @return string the text enclosed by "<pre>...</pre>" tags
69 * @access public
71 function PMA_printDecodedBug($textdata)
73 return '<pre>' . htmlspecialchars($textdata) . '</pre><br />';
74 } // end of the "PMA_printDecodedBug()" function
77 if (!empty($_POST) && isset($_POST['bug_encoded'])) {
78 $bug_encoded = $_POST['bug_encoded'];
81 if (!empty($bug_encoded) && is_string($bug_encoded)) {
82 if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) {
83 $bug_encoded = stripslashes($bug_encoded);
86 /** @var String $pmaString */
87 $pmaString = $GLOBALS['PMA_String'];
89 $bug_encoded = preg_replace('/[[:space:]]/', '', $bug_encoded);
90 $bug_decoded = base64_decode($bug_encoded);
91 if (/*overload*/mb_substr($bug_encoded, 0, 2) == 'eN') {
92 if (function_exists('gzuncompress')) {
93 $result = PMA_printDecodedBug(gzuncompress($bug_decoded));
94 } else {
95 $result = 'Error: &quot;gzuncompress()&quot; is unavailable!' . "\n";
97 } else {
98 $result = PMA_printDecodedBug($bug_decoded);
99 } // end if... else...
101 echo '<p>Decoded:</p>' . "\n"
102 . $result . "\n";
103 } // end if
105 </body>
107 </html>