imgpaste/config.php

16 lines
226 B
PHP
Raw Normal View History

2023-03-22 23:10:33 +01:00
<?php
// Used for <title></title>
$title = "imgpaste by gideonstar";
// Displayed text
2023-03-23 00:35:35 +01:00
$text = "Click or drop image here...";
2023-03-22 23:10:33 +01:00
// Writable data directory for images
$datadir = "i";
// Length of filenames
$hashlen = 8;
?>