mirror of
https://github.com/friendica/friendica
synced 2024-11-19 09:03:42 +00:00
constant
move define to const
This commit is contained in:
parent
9e81d3dc40
commit
e70e48abaa
1 changed files with 2 additions and 2 deletions
|
@ -15,13 +15,13 @@ use dba;
|
|||
|
||||
require_once "include/dba.php";
|
||||
|
||||
define("IMPORT_DEBUG", false);
|
||||
|
||||
/**
|
||||
* @brief UserImport class
|
||||
*/
|
||||
class UserImport
|
||||
{
|
||||
const IMPORT_DEBUG = false;
|
||||
|
||||
private static function lastInsertId()
|
||||
{
|
||||
if (IMPORT_DEBUG) {
|
||||
|
|
Loading…
Reference in a new issue