Correctif Member ID

This commit is contained in:
indev 2024-12-07 10:21:28 +00:00
parent d909655c6e
commit 955c619987
27019 changed files with 13 additions and 14 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 203 KiB

0
html/about/docs/img/Formulaire-Fiscal.jpg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 384 KiB

After

Width:  |  Height:  |  Size: 384 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 203 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 113 KiB

0
html/about/docs/pdf/Formulaire-Fiscal.pdf Normal file → Executable file
View File

Binary file not shown.

0
html/admin/.htaccess Normal file → Executable file
View File

4
html/admin/adherents.php Normal file → Executable file
View File

@ -84,7 +84,7 @@ $pdo = sqlConnect($sqlDatabaseHost, $sqlDatabaseName, $sqlDatabaseUser, $sqlData
$search = isset($_GET['search']) ? '%' . $_GET['search'] . '%' : '%%';
$sqlRequest = "SELECT adherents.ID, adherents.firstname, adherents.lastname, adherents.email, adherents.club, adherents.join_date, adherents.memberid FROM adherents WHERE (adherents.lastname LIKE :search OR adherents.firstname LIKE :search) AND adherents.etape_adhesion = 3 ORDER BY adherents.memberid";
$sqlRequest = "SELECT adherents.ID, adherents.firstname, adherents.lastname, adherents.email, adherents.club, adherents.join_date, adherents.memberid, users.username FROM adherents JOIN users ON adherents.userid = users.ID WHERE (adherents.lastname LIKE :search OR adherents.firstname LIKE :search) AND adherents.etape_adhesion = 3 ORDER BY adherents.memberid";
$request = $pdo->prepare($sqlRequest);
$request->bindParam(":search", $search);
$request->execute();
@ -94,7 +94,7 @@ $pdo = sqlConnect($sqlDatabaseHost, $sqlDatabaseName, $sqlDatabaseUser, $sqlData
echo ('<div class="users-list">');
foreach($result as $row) {
echo ('<div class="user-row">');
echo ('<div>' . $row['memberid'] . '</div><div>' . $row['firstname'] . ' ' . $row['lastname'] . '</div><div>' . $row['join_date'] . '</div></div>');
echo ('<div>' . $row['memberid'] . '</div><div>' . $row['firstname'] . ' ' . $row['lastname'] . '</div><div>' . $row['email'] . '</div><div>' . $row['username'] . '</div><div>' . $row['join_date'] . '</div></div>');
}
echo ('</div>');
} else {

0
html/admin/adhesions-non-payees.php Normal file → Executable file
View File

View File

@ -106,7 +106,7 @@ if (isset($_POST['delete-user']) && isset($_POST['delete-user-id'])) {
$search = isset($_GET['search']) ? '%' . $_GET['search'] . '%' : '%%';
$sqlRequest = "SELECT users.ID, users.username, users.display_name, users.role, users.accreditation, roles.badge_svg, users.profile_picture FROM users JOIN roles ON users.role = roles.ID WHERE users.ID LIKE :search OR users.username LIKE :search OR users.display_name LIKE :search OR users.email LIKE :search ORDER BY users.creation_date DESC LIMIT 5";
$sqlRequest = "SELECT users.ID, users.username, users.display_name, users.role, users.accreditation, roles.badge_svg, users.profile_picture FROM users JOIN roles ON users.role = roles.ID WHERE users.ID LIKE :search OR users.username LIKE :search OR users.display_name LIKE :search OR users.email LIKE :search ORDER BY users.creation_date DESC";
$request = $pdo->prepare($sqlRequest);
$request->bindParam(":search", $search);
$request->execute();
@ -156,4 +156,4 @@ if (isset($_POST['delete-user']) && isset($_POST['delete-user-id'])) {
</div>
</footer>
</body>
</html>
</html>

0
html/admin/sendmail.php Normal file → Executable file
View File

0
html/ads.txt Normal file → Executable file
View File

0
html/assets/pp/15.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

0
html/cagnotte/index.php Normal file → Executable file
View File

0
html/finances/index.php Normal file → Executable file
View File

0
html/kezako/fiches/img/git.jpg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

0
html/kezako/fiches/img/tunnel-ssh.jpg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

0
html/kezako/fiches/pdf/git.pdf Normal file → Executable file
View File

0
html/kezako/osciliator.html Normal file → Executable file
View File

0
html/login/composer.json Normal file → Executable file
View File

0
html/login/composer.lock generated Normal file → Executable file
View File

0
html/login/vendor/autoload.php vendored Normal file → Executable file
View File

0
html/login/vendor/composer/ClassLoader.php vendored Normal file → Executable file
View File

0
html/login/vendor/composer/InstalledVersions.php vendored Normal file → Executable file
View File

0
html/login/vendor/composer/LICENSE vendored Normal file → Executable file
View File

0
html/login/vendor/composer/autoload_classmap.php vendored Normal file → Executable file
View File

0
html/login/vendor/composer/autoload_files.php vendored Normal file → Executable file
View File

0
html/login/vendor/composer/autoload_namespaces.php vendored Normal file → Executable file
View File

0
html/login/vendor/composer/autoload_psr4.php vendored Normal file → Executable file
View File

0
html/login/vendor/composer/autoload_real.php vendored Normal file → Executable file
View File

0
html/login/vendor/composer/autoload_static.php vendored Normal file → Executable file
View File

0
html/login/vendor/composer/installed.json vendored Normal file → Executable file
View File

0
html/login/vendor/composer/installed.php vendored Normal file → Executable file
View File

0
html/login/vendor/composer/platform_check.php vendored Normal file → Executable file
View File

0
html/login/vendor/firebase/php-jwt/CHANGELOG.md vendored Normal file → Executable file
View File

0
html/login/vendor/firebase/php-jwt/LICENSE vendored Normal file → Executable file
View File

0
html/login/vendor/firebase/php-jwt/README.md vendored Normal file → Executable file
View File

0
html/login/vendor/firebase/php-jwt/composer.json vendored Normal file → Executable file
View File

0
html/login/vendor/firebase/php-jwt/src/BeforeValidException.php vendored Normal file → Executable file
View File

0
html/login/vendor/firebase/php-jwt/src/CachedKeySet.php vendored Normal file → Executable file
View File

0
html/login/vendor/firebase/php-jwt/src/ExpiredException.php vendored Normal file → Executable file
View File

0
html/login/vendor/firebase/php-jwt/src/JWK.php vendored Normal file → Executable file
View File

0
html/login/vendor/firebase/php-jwt/src/JWT.php vendored Normal file → Executable file
View File

View File

0
html/login/vendor/firebase/php-jwt/src/Key.php vendored Normal file → Executable file
View File

View File

0
html/login/vendor/google/apiclient-services/LICENSE vendored Normal file → Executable file
View File

0
html/login/vendor/google/apiclient-services/README.md vendored Normal file → Executable file
View File

0
html/login/vendor/google/apiclient-services/SECURITY.md vendored Normal file → Executable file
View File

0
html/login/vendor/google/apiclient-services/autoload.php vendored Normal file → Executable file
View File

0
html/login/vendor/google/apiclient-services/composer.json vendored Normal file → Executable file
View File

0
html/login/vendor/google/apiclient-services/src/ACMEDNS.php vendored Normal file → Executable file
View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

Some files were not shown because too many files have changed in this diff Show More