5f87ea6843
(cherry picked from commit 7a8cbee2f99cd74a50bce7e8df8130e2c477d903) Conflicts: CHANGELOG.md index.php js/zerobin.js lib/vizhash16x16.php
17 lines
443 B
PHP
17 lines
443 B
PHP
<?php
|
|
/**
|
|
* ZeroBin
|
|
*
|
|
* a zero-knowledge paste bin
|
|
*
|
|
* @link http://sebsauvage.net/wiki/doku.php?id=php:zerobin
|
|
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
|
|
* @license http://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
|
|
* @version 0.18
|
|
*/
|
|
|
|
// change this, if your php files and data is outside of your webservers document root
|
|
define('PATH', '');
|
|
|
|
require PATH . 'lib/auto.php';
|
|
new zerobin;
|