* 'prefix' - (string) A prefix to add between the date string and the
* random string.
* DEFAULT: NONE
- * 'rlength' - (integer) The length of the random string.
- * DEFAULT: 16
* 'server' - (string) The server name.
* DEFAULT: $_SERVER['SERVER_NAME'] (or 'localhost')
* </pre>
* 'prefix' - (string) A prefix to add between the date string and the
* random string.
* DEFAULT: NONE
- * 'rlength' - (integer) The length of the random string.
- * DEFAULT: 16
* 'server' - (string) The server name.
* DEFAULT: $_SERVER['SERVER_NAME'] (or 'localhost')
* </pre>
$this->_guid = date('YmdHis')
. '.'
. (isset($opts['prefix']) ? $opts['prefix'] . '.' : '')
- . strval(new Horde_Support_Randomid(isset($opts['rlength']) ? $opts['rlength'] : 16))
+ . strval(new Horde_Support_Randomid())
. '@'
. (isset($opts['server']) ? $opts['server'] : (isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'localhost'));
}