14 lines
292 B
PHP
14 lines
292 B
PHP
<?php
|
|
// Test get_conversation_detail.php in debug mode
|
|
$_GET['debug'] = 'true';
|
|
$_GET['user_id'] = 2;
|
|
chdir(__DIR__ . '/../api');
|
|
ob_start();
|
|
try {
|
|
include 'get_conversation_detail.php';
|
|
} catch (Throwable $t) {
|
|
echo 'Error: ' . $t->getMessage();
|
|
}
|
|
$out = ob_get_clean();
|
|
echo $out;
|