mirror of
https://github.com/friendica/friendica
synced 2024-11-19 11:03:40 +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";
|
require_once "include/dba.php";
|
||||||
|
|
||||||
define("IMPORT_DEBUG", false);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief UserImport class
|
* @brief UserImport class
|
||||||
*/
|
*/
|
||||||
class UserImport
|
class UserImport
|
||||||
{
|
{
|
||||||
|
const IMPORT_DEBUG = false;
|
||||||
|
|
||||||
private static function lastInsertId()
|
private static function lastInsertId()
|
||||||
{
|
{
|
||||||
if (IMPORT_DEBUG) {
|
if (IMPORT_DEBUG) {
|
||||||
|
|
Loading…
Reference in a new issue