mirror of
https://github.com/monstra-cms/monstra.git
synced 2025-08-06 13:16:54 +02:00
Code Fix
This commit is contained in:
@@ -546,7 +546,7 @@ class Table
|
||||
if ($order_by == 'id') {
|
||||
$records[$count]['sort'] = (int) $vars['id'];
|
||||
} else {
|
||||
$records[$count]['sort'] = (string)$vars[$order_by];
|
||||
$records[$count]['sort'] = (string) $vars[$order_by];
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -93,9 +93,9 @@ ClassLoader::mapClasses(array(
|
||||
'Html' => __DIR__.'/Html/Html.php',
|
||||
'Image' => __DIR__.'/Image/Image.php',
|
||||
'Inflector' => __DIR__.'/Inflector/Inflector.php',
|
||||
'MinifyCSS' => __DIR__.'/Minify/MinifyCSS.php',
|
||||
'MinifyHTML' => __DIR__.'/Minify/MinifyHTML.php',
|
||||
'MinifyJS' => __DIR__.'/Minify/MinifyJS.php',
|
||||
'MinifyCSS' => __DIR__.'/Minify/MinifyCSS.php',
|
||||
'MinifyHTML' => __DIR__.'/Minify/MinifyHTML.php',
|
||||
'MinifyJS' => __DIR__.'/Minify/MinifyJS.php',
|
||||
'Notification' => __DIR__.'/Notification/Notification.php',
|
||||
'Number' => __DIR__.'/Number/Number.php',
|
||||
'Registry' => __DIR__.'/Registry/Registry.php',
|
||||
|
@@ -18,11 +18,11 @@
|
||||
'Not Installed' => 'Nicht Installiert',
|
||||
'Security check results' => 'Sicherheits-Check Ergebnisse',
|
||||
'The configuration file has been found to be writable. We would advise you to remove all write permissions on defines.php on production systems.' =>
|
||||
'Die Konfigurationsdatei wurde als beschreibbar entdeckt. Wir empfehlen alle Schreibrechte für defines.php auf Produktionssystemen zu entfernen.',
|
||||
'Die Konfigurationsdatei wurde als beschreibbar entdeckt. Wir empfehlen alle Schreibrechte für defines.php auf Produktionssystemen zu entfernen.',
|
||||
'The Monstra .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br/>You can do this on unix systems with: <code>chmod a-w :path</code>' =>
|
||||
'Die Monstra .htaccess Datei wurde als beschreibbar entdeckt. Wir empfehlen alle Schreibrechte zu entfernen. <br/>Du kannst dies auf Unix-Systemen ganz einfach mit: <code>chmod a-w :path</code> erledigen.',
|
||||
'Die Monstra .htaccess Datei wurde als beschreibbar entdeckt. Wir empfehlen alle Schreibrechte zu entfernen. <br/>Du kannst dies auf Unix-Systemen ganz einfach mit: <code>chmod a-w :path</code> erledigen.',
|
||||
'The Monstra index.php file has been found to be writable. We would advise you to remove all write permissions. <br/>You can do this on unix systems with: <code>chmod a-w :path</code>' =>
|
||||
'Die Monstra index.php Datei wurde als beschreibbar entdeckt. Wir empfehlen alle Schreibrechte zu entfernen. <br/>Du kannst dies auf Unix-Systemen ganz einfach mit: <code>chmod a-w :path</code> erledigen.',
|
||||
'Die Monstra index.php Datei wurde als beschreibbar entdeckt. Wir empfehlen alle Schreibrechte zu entfernen. <br/>Du kannst dies auf Unix-Systemen ganz einfach mit: <code>chmod a-w :path</code> erledigen.',
|
||||
'Due to the type and amount of information an error might give intruders when Monstra::$environment = Monstra::DEVELOPMENT, we strongly advise setting Monstra::PRODUCTION in production systems.' =>
|
||||
'Aufgrund der Art und Menge der Informationen kann ein Fehler Eindringlinge ergeben wenn Monstra::$environment = Monstra::DEVELOPMENT, wir raten dringend dazu folgendermaßen Monstra::PRODUCTION in Produktionssystemen einzustellen.',
|
||||
'Monstra version' => 'Monstra version',
|
||||
|
@@ -42,7 +42,7 @@ class PluginsAdmin extends Backend
|
||||
if (File::exists(PLUGINS . DS . $plugin_name . DS .'install' . DS . $plugin_name . '.uninstall.php')) {
|
||||
include PLUGINS . DS . $plugin_name . DS . 'install' . DS . $plugin_name . '.uninstall.php';
|
||||
}
|
||||
|
||||
|
||||
// Clean Monstra TMP folder.
|
||||
Monstra::cleanTmp();
|
||||
|
||||
|
Reference in New Issue
Block a user