You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The entire framework repo (with the exception of system-generated files) has been amended to respect the 120c line-length limit. This is in preparation for the enforcement of this rule with PHP_CodeSniffer.
'missingExtensionText' => 'Neither the <a href="http://php.net/mssql">mssql</a> or <a href="http://www.microsoft.com/sqlserver/2005/en/us/PHP-Driver.aspx">sqlsrv</a> PHP extensions are available. Please install or enable one of them and refresh this page.'
21
+
'missingExtensionText' => 'Neither the <a href="http://php.net/mssql">mssql</a> or'
'missingExtensionText' => 'The <a href="http://php.net/pgsql">pgsql</a> PHP extension is not available. Please install or enable it and refresh this page.'
33
+
'missingExtensionText' => 'The <a href="http://php.net/pgsql">pgsql</a> PHP extension is not available. Please'
'missingExtensionText' => 'The <a href="http://php.net/manual/en/book.sqlite3.php">SQLite3</a> and <a href="http://php.net/manual/en/book.pdo.php">PDO</a> classes are not available. Please install or enable one of them and refresh this page.',
44
+
'missingExtensionText' => 'The <a href="http://php.net/manual/en/book.sqlite3.php">SQLite3</a> and'
45
+
. ' <a href="http://php.net/manual/en/book.pdo.php">PDO</a> classes are not available. Please install or'
46
+
. ' enable one of them and refresh this page.',
42
47
'fields' => array(
43
48
'path' => array(
44
-
'title' => 'Database path<br /><small>Absolute path, writeable by the webserver user.<br />Recommended to be outside of your webroot</small>',
Copy file name to clipboardExpand all lines: admin/code/GroupImportForm.php
+12-9
Original file line number
Diff line number
Diff line change
@@ -17,17 +17,20 @@ public function __construct($controller, $name, $fields = null, $actions = null,
17
17
if(!$fields) {
18
18
$helpHtml = _t(
19
19
'GroupImportForm.Help1',
20
-
'<p>Import one or more groups in <em>CSV</em> format (comma-separated values). <small><a href="#" class="toggle-advanced">Show advanced usage</a></small></p>'
20
+
'<p>Import one or more groups in <em>CSV</em> format (comma-separated values).'
Copy file name to clipboardExpand all lines: admin/code/LeftAndMain.php
+50-24
Original file line number
Diff line number
Diff line change
@@ -200,9 +200,14 @@ public function init() {
200
200
201
201
// if no alternate menu items have matched, return a permission error
202
202
$messageSet = array(
203
-
'default' => _t('LeftAndMain.PERMDEFAULT',"Please choose an authentication method and enter your credentials to access the CMS."),
204
-
'alreadyLoggedIn' => _t('LeftAndMain.PERMALREADY',"I'm sorry, but you can't access that part of the CMS. If you want to log in as someone else, do so below"),
205
-
'logInAgain' => _t('LeftAndMain.PERMAGAIN',"You have been logged out of the CMS. If you would like to log in again, enter a username and password below."),
203
+
'default' => _t('LeftAndMain.PERMDEFAULT',
204
+
"Please choose an authentication method and enter your credentials to access the CMS."),
0 commit comments