Minor updates

This commit is contained in:
Deon George 2009-09-07 00:13:58 +10:00
parent 02e9f8477a
commit 3ffe6878f3
3 changed files with 3 additions and 2 deletions

View File

@ -12,6 +12,7 @@
require_once './common.php';
$www = array();
$www['cmd'] = get_request('cmd','REQUEST');
$www['meth'] = get_request('meth','REQUEST');

View File

@ -526,7 +526,7 @@ class Config {
'default'=>true);
$this->default->password['no_random_crypt_salt'] = array(
'descr'=>'Disable random salt for crypt()',
'desc'=>'Disable random salt for crypt()',
'default'=>false);
/** Search display

View File

@ -126,7 +126,7 @@ class page {
}
# HTML head requirements.
if (is_array($this->_head) && count ($this->_head))
if (is_array($this->_head) && count($this->_head))
foreach ($this->_head as $line)
echo $line."\n";