a2b518b1b3
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@618 b3834d28-1941-0410-a4f8-b48e95affb8f
10 lines
323 B
PHP
10 lines
323 B
PHP
<?php
|
|
/**
|
|
* Simply create a test user in the database with "test" as password
|
|
*/
|
|
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header-standalone.php';
|
|
|
|
$us = SemanticScuttle_Service_Factory::get('User');
|
|
$us->addUser('test', 'test', 'test@example.org');
|
|
$us->addUser('admin', 'admin', 'admin@example.org');
|
|
?>
|