Skip to content

Commit

Permalink
Prevent including library twice
Browse files Browse the repository at this point in the history
  • Loading branch information
torinfo committed Feb 7, 2024
1 parent ab4981d commit 506fe4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website_code/php/properties/export_template.php
Expand Up @@ -31,11 +31,11 @@

require_once("../template_library.php");

include "../template_status.php";
require_once "../template_status.php";

require_once("../url_library.php");

include "../user_library.php";
require_once "../user_library.php";

$database_id=database_connect("Export template database connect success","Export template database connect failed");

Expand Down Expand Up @@ -77,4 +77,4 @@

}

}
}

0 comments on commit 506fe4d

Please sign in to comment.