diff --git a/doc/import_export.rst b/doc/import_export.rst index f109f99f5d..b0144ebf42 100644 --- a/doc/import_export.rst +++ b/doc/import_export.rst @@ -194,7 +194,7 @@ Sample output: [ { - "comment": "Export to JSON plugin for PHPMyAdmin", + "comment": "Export to JSON plugin for phpMyAdmin", "type": "header", "version": "4.7.0-dev" }, diff --git a/libraries/classes/Plugins/Export/ExportJson.php b/libraries/classes/Plugins/Export/ExportJson.php index 401430939b..3f19e9a2e2 100644 --- a/libraries/classes/Plugins/Export/ExportJson.php +++ b/libraries/classes/Plugins/Export/ExportJson.php @@ -113,7 +113,7 @@ class ExportJson extends ExportPlugin $data = $this->encode([ 'type' => 'header', 'version' => Version::VERSION, - 'comment' => 'Export to JSON plugin for PHPMyAdmin', + 'comment' => 'Export to JSON plugin for phpMyAdmin', ]); if ($data === false) { return false; diff --git a/libraries/classes/Plugins/Export/ExportPhparray.php b/libraries/classes/Plugins/Export/ExportPhparray.php index 7131f1a008..a244cc6b30 100644 --- a/libraries/classes/Plugins/Export/ExportPhparray.php +++ b/libraries/classes/Plugins/Export/ExportPhparray.php @@ -83,7 +83,7 @@ class ExportPhparray extends ExportPlugin $this->export->outputHandler( 'expectOutputString( "[\n" . '{"type":"header","version":"' . Version::VERSION - . '","comment":"Export to JSON plugin for PHPMyAdmin"},' + . '","comment":"Export to JSON plugin for phpMyAdmin"},' . "\n" );