1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-03 05:07:27 +02:00

fixed missing spaces

This commit is contained in:
sweetas
2007-03-19 17:03:14 +00:00
parent ab4d0d68a8
commit c973e27a49

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_languages/English/admin/help/fileinspector.php,v $ | $Source: /cvs_backup/e107_0.8/e107_languages/English/admin/help/fileinspector.php,v $
| $Revision: 1.2 $ | $Revision: 1.3 $
| $Date: 2006-12-07 16:18:51 $ | $Date: 2007-03-19 17:03:14 $
| $Author: sweetas $ | $Author: sweetas $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@@ -39,13 +39,13 @@ $text = "<div style='margin-left: 0px; margin-bottom: 1px; margin-top: 2px; vert
<img src='".e_IMAGE."packs/".$imode."/fileinspector/file_unknown.png' alt='".$dir."' style='margin-left: 3px; width: 16px; height: 16px' />&nbsp;Non Core File</div>"; <img src='".e_IMAGE."packs/".$imode."/fileinspector/file_unknown.png' alt='".$dir."' style='margin-left: 3px; width: 16px; height: 16px' />&nbsp;Non Core File</div>";
$ns -> tablerender("File Key", $text); $ns -> tablerender("File Key", $text);
$text = "The file inspector scans and analyses the files on your sites server. When the inspector encounters $text = "The file inspector scans and analyses the files on your sites server. When the inspector encounters
an e107 core file, it checks it for file consistency to make sure it isn't corrupted."; an e107 core file, it checks it for file consistency to make sure it isn't corrupted.";
if ($pref['developer']) { if ($pref['developer']) {
$text .= "<br /><br /> $text .= "<br /><br />
The additional string matching tool (developer mode only) enables you to scan the files on your server for text strings The additional string matching tool (developer mode only) enables you to scan the files on your server for text strings
using regular expressions. The regex engine in use is PHP's <a href='http://php.net/pcre'>PCRE</a> using regular expressions. The regex engine in use is PHP's <a href='http://php.net/pcre'>PCRE</a>
(the preg_* functions), so enter your query as #pattern#modifiers in the fields provided."; (the preg_* functions), so enter your query as #pattern#modifiers in the fields provided.";
} }