Add a new tag to hide a paste on the main page
This commit is contained in:
parent
47372cf211
commit
a6a87b6f8a
5 changed files with 23 additions and 8 deletions
|
|
@ -1,12 +1,12 @@
|
|||
<?php
|
||||
|
||||
// The directory where code will be stored
|
||||
define("DESTINATION", "../files/");
|
||||
define("DESTINATION", __dir__."/files/");
|
||||
if (!is_writable(DESTINATION))
|
||||
die ("Destination folder not writable");
|
||||
|
||||
// Path to the GeSHi languages
|
||||
define("GESHI_DIR", "../geshi/geshi/");
|
||||
define("GESHI_DIR", __dir__."/geshi/geshi/");
|
||||
|
||||
|
||||
// The size of the generated identifier
|
||||
|
|
|
|||
Reference in a new issue