Removing some dodgy sample scripts which are uneccesary.

Fixed an issue where the config function was wrong. http://otland.net/threads/znote-aac-1-4-tfs-0-2-13-tfs-0-3-6-0-4.166722/page-45#post-2157676
Added a small tip on how to to use the youtube embed when posting news.
This commit is contained in:
Znote
2014-11-16 16:00:54 +01:00
parent da8feec5d8
commit d6efb54577
6 changed files with 2 additions and 288 deletions

View File

@@ -808,7 +808,7 @@ function user_delete_character_soft($char_id) {
$char_name = user_character_name($char_id);
$original_acc_id = user_character_account_id($char_name);
if(!user_character_pending_delete($char_name))
mysql_insert('INSERT INTO `znote_deleted_characters`(`original_account_id`, `character_name`, `time`, `done`) VALUES(' . $original_acc_id . ', "' . $char_name . '", (NOW() + INTERVAL ' . Config('delete_character_interval') . '), 0)');
mysql_insert('INSERT INTO `znote_deleted_characters`(`original_account_id`, `character_name`, `time`, `done`) VALUES(' . $original_acc_id . ', "' . $char_name . '", (NOW() + INTERVAL ' . config('delete_character_interval') . '), 0)');
else
return false;
}