Browse Source

...

pull/40/head
Savetheinternet 13 years ago
parent
commit
9191c0704a
  1. 8
      inc/config.php

8
inc/config.php

@ -68,6 +68,10 @@
// Make IPv4 addresses look like IPv4 addresses ("::ffff:8.8.8.8" becomes "8.8.8.8") // Make IPv4 addresses look like IPv4 addresses ("::ffff:8.8.8.8" becomes "8.8.8.8")
$config['ipv6_ipv4'] = true; $config['ipv6_ipv4'] = true;
// A small file in the main directory indicating that the script has been ran and the board(s) have been generated.
// This keeps the script from querying the database and causing strain when not needed.
$config['has_installed'] = '.installed';
/* /*
* ==================== * ====================
* Database settings * Database settings
@ -816,10 +820,6 @@
// Delete news entries // Delete news entries
$config['mod']['news_delete'] = ADMIN; $config['mod']['news_delete'] = ADMIN;
// A small file in the main directory indicating that the script has been ran and the board(s) have been generated.
// This keeps the script from querying the database and causing strain when not needed.
$config['has_installed'] = '.installed';
/* /*
* ==================== * ====================
* Other/uncategorized * Other/uncategorized

Loading…
Cancel
Save