Navigation Menu

Skip to content

Commit

Permalink
Use single quotes when we do not want to evaluate the string
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Oct 16, 2012
1 parent b8be2a8 commit 869d7c0
Show file tree
Hide file tree
Showing 85 changed files with 91 additions and 91 deletions.
2 changes: 1 addition & 1 deletion libraries/plugins/AuthenticationPlugin.class.php
Expand Up @@ -10,7 +10,7 @@
} }


/* This class extends the PluginObserver class */ /* This class extends the PluginObserver class */
require_once "PluginObserver.class.php"; require_once 'PluginObserver.class.php';


/** /**
* Provides a common interface that will have to be implemented by all of the * Provides a common interface that will have to be implemented by all of the
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/ExportPlugin.class.php
Expand Up @@ -10,7 +10,7 @@
} }


/* This class extends the PluginObserver class */ /* This class extends the PluginObserver class */
require_once "PluginObserver.class.php"; require_once 'PluginObserver.class.php';


/** /**
* Provides a common interface that will have to be implemented by all of the * Provides a common interface that will have to be implemented by all of the
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/ImportPlugin.class.php
Expand Up @@ -10,7 +10,7 @@
} }


/* This class extends the PluginObserver class */ /* This class extends the PluginObserver class */
require_once "PluginObserver.class.php"; require_once 'PluginObserver.class.php';


/** /**
* Provides a common interface that will have to be implemented by all of the * Provides a common interface that will have to be implemented by all of the
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/PluginObserver.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Each PluginObserver instance contains a PluginManager instance */ /* Each PluginObserver instance contains a PluginManager instance */
require_once "PluginManager.class.php"; require_once 'PluginManager.class.php';


/** /**
* This class implements the SplObserver interface * This class implements the SplObserver interface
Expand Down
4 changes: 2 additions & 2 deletions libraries/plugins/TransformationsPlugin.class.php
Expand Up @@ -10,9 +10,9 @@
} }


/* It extends the PluginObserver abstract class */ /* It extends the PluginObserver abstract class */
require_once "PluginObserver.class.php"; require_once 'PluginObserver.class.php';
/* It also implements the transformations interface */ /* It also implements the transformations interface */
require_once "TransformationsInterface.int.php"; require_once 'TransformationsInterface.int.php';


/** /**
* Extends PluginObserver and provides a common interface that will have to * Extends PluginObserver and provides a common interface that will have to
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/auth/AuthenticationConfig.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the authentication interface */ /* Get the authentication interface */
require_once "libraries/plugins/AuthenticationPlugin.class.php"; require_once 'libraries/plugins/AuthenticationPlugin.class.php';


/** /**
* Handles the config authentication method * Handles the config authentication method
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/auth/AuthenticationCookie.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the authentication interface */ /* Get the authentication interface */
require_once "libraries/plugins/AuthenticationPlugin.class.php"; require_once 'libraries/plugins/AuthenticationPlugin.class.php';


/** /**
* Remember where to redirect the user * Remember where to redirect the user
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/auth/AuthenticationHttp.class.php
Expand Up @@ -12,7 +12,7 @@
} }


/* Get the authentication interface */ /* Get the authentication interface */
require_once "libraries/plugins/AuthenticationPlugin.class.php"; require_once 'libraries/plugins/AuthenticationPlugin.class.php';


/** /**
* Handles the HTTP authentication methods * Handles the HTTP authentication methods
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/auth/AuthenticationSignon.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the authentication interface */ /* Get the authentication interface */
require_once "libraries/plugins/AuthenticationPlugin.class.php"; require_once 'libraries/plugins/AuthenticationPlugin.class.php';


/** /**
* Handles the SignOn authentication method * Handles the SignOn authentication method
Expand Down
4 changes: 2 additions & 2 deletions libraries/plugins/export/ExportCodegen.class.php
Expand Up @@ -11,9 +11,9 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';
/* Get the table property class */ /* Get the table property class */
require_once "libraries/plugins/export/TableProperty.class.php"; require_once 'libraries/plugins/export/TableProperty.class.php';


/** /**
* Handles the export for the CodeGen class * Handles the export for the CodeGen class
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportCsv.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';


/** /**
* Handles the export for the CSV format * Handles the export for the CSV format
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportExcel.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Extend the export CSV class */ /* Extend the export CSV class */
require_once "libraries/plugins/export/ExportCsv.class.php"; require_once 'libraries/plugins/export/ExportCsv.class.php';


/** /**
* Handles the export for the CSV-Excel format * Handles the export for the CSV-Excel format
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportHtmlword.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';


/** /**
* Handles the export for the HTML-Word format * Handles the export for the HTML-Word format
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportJson.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';


/** /**
* Handles the export for the JSON format * Handles the export for the JSON format
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportLatex.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';


/** /**
* Handles the export for the Latex format * Handles the export for the Latex format
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportMediawiki.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';


/** /**
* Handles the export for the MediaWiki class * Handles the export for the MediaWiki class
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportOds.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';


$GLOBALS['ods_buffer'] = ''; $GLOBALS['ods_buffer'] = '';
require_once 'libraries/opendocument.lib.php'; require_once 'libraries/opendocument.lib.php';
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportOdt.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';


$GLOBALS['odt_buffer'] = ''; $GLOBALS['odt_buffer'] = '';
require_once 'libraries/opendocument.lib.php'; require_once 'libraries/opendocument.lib.php';
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportPdf.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';
/* Get the PMA_ExportPdf class */ /* Get the PMA_ExportPdf class */
require_once 'libraries/plugins/export/PMA_ExportPdf.class.php'; require_once 'libraries/plugins/export/PMA_ExportPdf.class.php';


Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportPhparray.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';


/** /**
* Handles the export for the PHP Array class * Handles the export for the PHP Array class
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportSql.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';


/** /**
* Handles the export for the SQL class * Handles the export for the SQL class
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportTexytext.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';


/** /**
* Handles the export for the Texy! text class * Handles the export for the Texy! text class
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportXml.class.php
Expand Up @@ -14,7 +14,7 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';


/** /**
* Handles the export for the XML class * Handles the export for the XML class
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/ExportYaml.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';


/** /**
* Handles the export for the YAML format * Handles the export for the YAML format
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/export/README
Expand Up @@ -16,7 +16,7 @@ if (! defined('PHPMYADMIN')) {
} }


/* Get the export interface */ /* Get the export interface */
require_once "libraries/plugins/ExportPlugin.class.php"; require_once 'libraries/plugins/ExportPlugin.class.php';


/** /**
* Handles the export for the [Name] format * Handles the export for the [Name] format
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/import/ImportCsv.class.php
Expand Up @@ -12,7 +12,7 @@
} }


/* Get the import interface */ /* Get the import interface */
require_once "libraries/plugins/ImportPlugin.class.php"; require_once 'libraries/plugins/ImportPlugin.class.php';


/** /**
* Handles the import for the CSV format * Handles the import for the CSV format
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/import/ImportLdi.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the import interface */ /* Get the import interface */
require_once "libraries/plugins/ImportPlugin.class.php"; require_once 'libraries/plugins/ImportPlugin.class.php';


// We need relations enabled and we work only on database // We need relations enabled and we work only on database
if ($GLOBALS['plugin_param'] !== 'table') { if ($GLOBALS['plugin_param'] !== 'table') {
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/import/ImportMediawiki.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the import interface */ /* Get the import interface */
require_once "libraries/plugins/ImportPlugin.class.php"; require_once 'libraries/plugins/ImportPlugin.class.php';


/** /**
* Handles the import for the MediaWiki format * Handles the import for the MediaWiki format
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/import/ImportOds.class.php
Expand Up @@ -20,7 +20,7 @@
} }


/* Get the import interface */ /* Get the import interface */
require_once "libraries/plugins/ImportPlugin.class.php"; require_once 'libraries/plugins/ImportPlugin.class.php';


/** /**
* Handles the import for the ODS format * Handles the import for the ODS format
Expand Down
8 changes: 4 additions & 4 deletions libraries/plugins/import/ImportShp.class.php
Expand Up @@ -16,11 +16,11 @@
} }


/* Get the import interface*/ /* Get the import interface*/
require_once "libraries/plugins/ImportPlugin.class.php"; require_once 'libraries/plugins/ImportPlugin.class.php';
/* Get the ShapeFile class */ /* Get the ShapeFile class */
require_once "libraries/bfShapeFiles/ShapeFile.lib.php"; require_once 'libraries/bfShapeFiles/ShapeFile.lib.php';
require_once "libraries/plugins/import/ShapeFile.class.php"; require_once 'libraries/plugins/import/ShapeFile.class.php';
require_once "libraries/plugins/import/ShapeRecord.class.php"; require_once 'libraries/plugins/import/ShapeRecord.class.php';


/** /**
* Handles the import for ESRI Shape files * Handles the import for ESRI Shape files
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/import/ImportSql.class.php
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the import interface */ /* Get the import interface */
require_once "libraries/plugins/ImportPlugin.class.php"; require_once 'libraries/plugins/ImportPlugin.class.php';


/** /**
* Handles the import for the SQL format * Handles the import for the SQL format
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/import/ImportXml.class.php
Expand Up @@ -20,7 +20,7 @@
} }


/* Get the import interface */ /* Get the import interface */
require_once "libraries/plugins/ImportPlugin.class.php"; require_once 'libraries/plugins/ImportPlugin.class.php';


/** /**
* Handles the import for the XML format * Handles the import for the XML format
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/import/README
Expand Up @@ -16,7 +16,7 @@ if (! defined('PHPMYADMIN')) {
} }


/* Get the import interface */ /* Get the import interface */
require_once "libraries/plugins/ImportPlugin.class.php"; require_once 'libraries/plugins/ImportPlugin.class.php';


/** /**
* Handles the import for the [Name] format * Handles the import for the [Name] format
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/import/upload/UploadApc.class.php
Expand Up @@ -10,7 +10,7 @@
} }


/* Get the transformations interface */ /* Get the transformations interface */
require_once "libraries/plugins/UploadInterface.int.php"; require_once 'libraries/plugins/UploadInterface.int.php';


/** /**
* Implementation for the APC extension * Implementation for the APC extension
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/import/upload/UploadNoplugin.class.php
Expand Up @@ -10,7 +10,7 @@
} }


/* Get the transformations interface */ /* Get the transformations interface */
require_once "libraries/plugins/UploadInterface.int.php"; require_once 'libraries/plugins/UploadInterface.int.php';


/** /**
* Implementation for no plugin * Implementation for no plugin
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/import/upload/UploadProgress.class.php
Expand Up @@ -10,7 +10,7 @@
} }


/* Get the transformations interface */ /* Get the transformations interface */
require_once "libraries/plugins/UploadInterface.int.php"; require_once 'libraries/plugins/UploadInterface.int.php';


/** /**
* Implementation for upload progress * Implementation for upload progress
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/import/upload/UploadSession.class.php
Expand Up @@ -10,7 +10,7 @@
} }


/* Get the transformations interface */ /* Get the transformations interface */
require_once "libraries/plugins/UploadInterface.int.php"; require_once 'libraries/plugins/UploadInterface.int.php';


/** /**
* Implementation for session * Implementation for session
Expand Down
Expand Up @@ -10,7 +10,7 @@
exit; exit;
} }
/* Get the download transformations interface */ /* Get the download transformations interface */
require_once "abstract/DownloadTransformationsPlugin.class.php"; require_once 'abstract/DownloadTransformationsPlugin.class.php';


/** /**
* Handles the download transformation for application octetstream * Handles the download transformation for application octetstream
Expand Down
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the hex transformations interface */ /* Get the hex transformations interface */
require_once "abstract/HexTransformationsPlugin.class.php"; require_once 'abstract/HexTransformationsPlugin.class.php';


/** /**
* Handles the hex transformation for application octetstream * Handles the hex transformation for application octetstream
Expand Down
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the inline transformations interface */ /* Get the inline transformations interface */
require_once "abstract/InlineTransformationsPlugin.class.php"; require_once 'abstract/InlineTransformationsPlugin.class.php';


/** /**
* Handles the inline transformation for image jpeg * Handles the inline transformation for image jpeg
Expand Down
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the link transformations interface */ /* Get the link transformations interface */
require_once "abstract/ImageLinkTransformationsPlugin.class.php"; require_once 'abstract/ImageLinkTransformationsPlugin.class.php';


/** /**
* Handles the link transformation for image jpeg * Handles the link transformation for image jpeg
Expand Down
Expand Up @@ -11,7 +11,7 @@
} }


/* Get the inline transformations interface */ /* Get the inline transformations interface */
require_once "abstract/InlineTransformationsPlugin.class.php"; require_once 'abstract/InlineTransformationsPlugin.class.php';


/** /**
* Handles the inline transformation for image png * Handles the inline transformation for image png
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/transformations/TEMPLATE
Expand Up @@ -13,7 +13,7 @@ if (! defined('PHPMYADMIN')) {
} }


/* Get the [TransformationName] transformations interface */ /* Get the [TransformationName] transformations interface */
require_once "abstract/[TransformationName]TransformationsPlugin.class.php"; require_once 'abstract/[TransformationName]TransformationsPlugin.class.php';


/** /**
* Handles the [TransformationName] transformation for [MIMEType] - [MIMESubtype] * Handles the [TransformationName] transformation for [MIMEType] - [MIMESubtype]
Expand Down

0 comments on commit 869d7c0

Please sign in to comment.