Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2011-08-04 17:25:26 +0400
committerMichal Čihař <mcihar@suse.cz>2011-08-04 17:25:26 +0400
commitc3f8dd92502620f368ee4f18876fae3785f9c1b8 (patch)
treea25f0670603987529fe1ce743db7612185f841f7 /file_echo.php
parent1d687ef960ea91c35772946c0297f6e632ad1da7 (diff)
Coding style
Diffstat (limited to 'file_echo.php')
-rw-r--r--file_echo.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/file_echo.php b/file_echo.php
index 2756209252..58ff86bdb5 100644
--- a/file_echo.php
+++ b/file_echo.php
@@ -41,7 +41,7 @@ if (isset($_REQUEST['filename']) && isset($_REQUEST['image'])) {
/* Decode data */
if ($extension != 'svg') {
- $data = substr($_REQUEST['image'], strpos($_REQUEST['image'],',') + 1);
+ $data = substr($_REQUEST['image'], strpos($_REQUEST['image'], ',') + 1);
$data = base64_decode($data);
} else {
$data = $_REQUEST['image'];