mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-14 18:48:21 -07:00
Minor improvements (#1502)
* Minor improvements * Update build_files_integrity.php * Updated * Update usercp_viewprofile.tpl * Updated * Update config.php * Updated * Update register.php * Updated * Update main.php * Update functions.php * Update CHANGELOG.md
This commit is contained in:
parent
6a10adabf5
commit
141fab021a
10 changed files with 22 additions and 43 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
- Release 2.4.4 🦩 ([belomaxorka](https://github.com/belomaxorka))
|
||||
- Some improvements for integrity checker [\#1501](https://github.com/torrentpier/torrentpier/pull/1501) ([belomaxorka](https://github.com/belomaxorka))
|
||||
- Minor improvements [\#1502](https://github.com/torrentpier/torrentpier/pull/1502) ([belomaxorka](https://github.com/belomaxorka))
|
||||
|
||||
## [v2.4.3](https://github.com/torrentpier/torrentpier/tree/v2.4.3) (2024-06-09)
|
||||
[Full Changelog](https://github.com/torrentpier/torrentpier/compare/v2.4.2...v2.4.3)
|
||||
|
|
|
@ -676,7 +676,8 @@ INSERT INTO `bb_disallow` (`disallow_id`, `disallow_username`)
|
|||
VALUES ('1', 'torrentpier*'),
|
||||
('2', 'tracker*'),
|
||||
('3', 'forum*'),
|
||||
('4', 'torrent*');
|
||||
('4', 'torrent*'),
|
||||
('5', 'admin*');
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for `bb_extensions`
|
||||
|
|
|
@ -557,6 +557,7 @@ $bb_cfg['last_visit_date_format'] = 'd-M H:i';
|
|||
$bb_cfg['last_post_date_format'] = 'd-M-y H:i';
|
||||
$bb_cfg['poll_max_days'] = 180; // How many days will the poll be active
|
||||
$bb_cfg['integrity_check'] = true; // TorrentPier files integrity check (Not recommended to disable!)
|
||||
$bb_cfg['enable_additional_flags'] = true; // Enables ability to select additional flags in "Country select"
|
||||
|
||||
$bb_cfg['allow_change'] = [
|
||||
'language' => true, // Allow user to change language
|
||||
|
|
|
@ -17,6 +17,9 @@ if (!$bb_cfg['integrity_check']) {
|
|||
return;
|
||||
}
|
||||
|
||||
$filesList = [];
|
||||
$wrongFilesList = [];
|
||||
|
||||
$checksumFile = new SplFileObject(CHECKSUMS_FILE, 'r');
|
||||
$checksumFile->setFlags(SplFileObject::SKIP_EMPTY | SplFileObject::DROP_NEW_LINE);
|
||||
|
||||
|
@ -36,7 +39,6 @@ $ignoreFiles = [
|
|||
'styles/images/logo/logo.png'
|
||||
];
|
||||
|
||||
$filesList = [];
|
||||
$lines = [];
|
||||
foreach ($checksumFile as $line) {
|
||||
$parts = explode(' ', $line);
|
||||
|
@ -54,7 +56,6 @@ foreach ($checksumFile as $line) {
|
|||
];
|
||||
}
|
||||
|
||||
$wrongFilesList = [];
|
||||
foreach ($filesList as $file) {
|
||||
if (!file_exists(BB_ROOT . '/' . $file['path']) || (strtolower(md5_file(BB_ROOT . '/' . $file['path'])) !== strtolower($file['hash']))) {
|
||||
$wrongFilesList[] = $file['path'];
|
||||
|
|
|
@ -1076,7 +1076,6 @@ $lang['COUNTRIES'] = [
|
|||
'GN' => 'Guinea',
|
||||
'GP' => 'Guadeloupe',
|
||||
'GQ' => 'Equatorial Guinea',
|
||||
'GR3' => 'German Reich (3rd)',
|
||||
'GR' => 'Greece',
|
||||
'GS' => 'South Georgia and the South Sandwich Islands',
|
||||
'GT' => 'Guatemala',
|
||||
|
@ -1116,7 +1115,6 @@ $lang['COUNTRIES'] = [
|
|||
'KZ' => 'Kazakhstan',
|
||||
'LA' => 'Laos (Lao People\'s Democratic Republic)',
|
||||
'LB' => 'Lebanon',
|
||||
'LGBT' => 'Pride flag', // __ //
|
||||
'LC' => 'Saint Lucia',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LK' => 'Sri Lanka',
|
||||
|
@ -1163,7 +1161,6 @@ $lang['COUNTRIES'] = [
|
|||
'NZ' => 'New Zealand',
|
||||
'OM' => 'Oman',
|
||||
'PA' => 'Panama',
|
||||
'PACE' => 'Peace flag', // __ //
|
||||
'PE' => 'Peru',
|
||||
'PF' => 'French Polynesia',
|
||||
'PG' => 'Papua New Guinea',
|
||||
|
@ -1234,7 +1231,6 @@ $lang['COUNTRIES'] = [
|
|||
'VI' => 'Virgin Islands, U.S.',
|
||||
'VN' => 'Vietnam',
|
||||
'VU' => 'Vanuatu',
|
||||
'WBW' => 'Wonderful Russia of the Future 🕊',
|
||||
'WF' => 'Wallis and Futuna Islands',
|
||||
'WS' => 'Samoa',
|
||||
'XK' => 'Kosovo',
|
||||
|
@ -1246,6 +1242,12 @@ $lang['COUNTRIES'] = [
|
|||
'ZW' => 'Zimbabwe'
|
||||
];
|
||||
|
||||
$lang['ADDITIONAL_FLAGS'] = [
|
||||
'WBW' => 'Wonderful Russia of the Future',
|
||||
'PACE' => 'Peace flag',
|
||||
'LGBT' => 'Pride flag'
|
||||
];
|
||||
|
||||
// Errors
|
||||
$lang['INFORMATION'] = 'Information';
|
||||
$lang['ADMIN_REAUTHENTICATE'] = 'To administer/moderate the board you must re-authenticate yourself.';
|
||||
|
|
|
@ -37,7 +37,7 @@ class File extends Common
|
|||
$this->cur_query = "cache->get('$name')";
|
||||
$this->debug('start');
|
||||
|
||||
if (file_exists($filename)) {
|
||||
if (is_file($filename) && is_readable($filename)) {
|
||||
require($filename);
|
||||
}
|
||||
|
||||
|
@ -80,7 +80,7 @@ class File extends Common
|
|||
$this->debug('start');
|
||||
|
||||
$filename = $this->dir . clean_filename($this->prefix . $name) . '.php';
|
||||
if (file_exists($filename)) {
|
||||
if (is_file($filename)) {
|
||||
$clear = (bool)unlink($filename);
|
||||
}
|
||||
|
||||
|
|
|
@ -227,6 +227,11 @@ class User
|
|||
}
|
||||
}
|
||||
|
||||
// Merge additional flags with country flags
|
||||
if ($bb_cfg['enable_additional_flags']) {
|
||||
$lang['COUNTRIES'] = array_merge($lang['COUNTRIES'], $lang['ADDITIONAL_FLAGS']);
|
||||
}
|
||||
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@ class File extends Common
|
|||
$this->cur_query = null;
|
||||
$this->num_queries++;
|
||||
|
||||
if (file_exists($filename)) {
|
||||
if (is_file($filename) && is_readable($filename)) {
|
||||
require($filename);
|
||||
|
||||
$this->data[$item] = $filecache;
|
||||
|
|
|
@ -1,32 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="1000pt" height="600pt" viewBox="0 0 1000 600" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="#dc0000ff">
|
||||
<path fill="#dc0000" opacity="1.00" d=" M 0.00 0.00 L 305.00 0.00 C 305.00 38.28 305.00 76.55 305.00 114.83 C 255.40 134.56 214.51 175.37 194.82 225.01 C 129.88 224.99 64.94 225.00 0.00 225.00 L 0.00 0.00 Z" />
|
||||
<path fill="#dc0000" opacity="1.00" d=" M 455.00 0.00 L 1000.00 0.00 L 1000.00 225.00 C 855.06 225.01 710.12 224.99 565.18 225.00 C 545.40 175.42 504.60 134.59 455.00 114.82 C 455.01 76.55 454.99 38.27 455.00 0.00 Z" />
|
||||
<path fill="#dc0000" opacity="1.00" d=" M 0.00 375.00 C 64.94 375.00 129.87 375.00 194.81 375.00 C 214.61 424.58 255.41 465.40 305.00 485.18 C 305.00 523.45 305.00 561.72 305.00 600.00 L 0.00 600.00 L 0.00 375.00 Z" />
|
||||
<path fill="#dc0000" opacity="1.00" d=" M 565.18 375.00 C 710.12 375.01 855.06 374.99 1000.00 375.01 L 1000.00 600.00 L 455.00 600.00 C 454.99 561.72 455.01 523.45 455.00 485.18 C 504.57 465.39 545.39 424.57 565.18 375.00 Z" />
|
||||
</g>
|
||||
<g id="#ffffffff">
|
||||
<path fill="#ffffff" opacity="1.00" d=" M 305.00 0.00 L 320.00 0.00 C 320.00 41.68 320.00 83.35 320.00 125.03 C 297.54 132.94 276.42 144.87 258.56 160.67 C 234.14 181.80 215.62 209.51 205.03 240.00 C 136.68 240.00 68.34 240.00 0.00 240.00 L 0.00 225.00 C 64.94 225.00 129.88 224.99 194.82 225.01 C 214.51 175.37 255.40 134.56 305.00 114.83 C 305.00 76.55 305.00 38.28 305.00 0.00 Z" />
|
||||
<path fill="#ffffff" opacity="1.00" d=" M 335.07 0.00 L 350.50 0.00 C 350.48 44.14 350.53 88.28 350.48 132.42 C 370.28 129.02 390.70 129.00 410.47 132.63 C 410.54 88.42 410.48 44.21 410.50 0.00 L 425.50 0.00 C 425.49 45.30 425.52 90.60 425.48 135.90 C 443.39 141.31 460.73 148.84 476.11 159.57 C 508.97 181.97 533.41 216.20 544.07 254.51 C 696.05 254.50 848.02 254.46 1000.00 254.50 L 1000.00 269.50 C 849.12 269.55 698.25 269.45 547.37 269.53 C 551.00 289.30 550.98 309.72 547.58 329.52 C 698.39 329.46 849.19 329.54 1000.00 329.50 L 1000.00 345.00 C 848.06 345.00 696.12 345.00 544.17 345.00 C 534.50 380.15 513.27 412.07 484.36 434.31 C 466.99 448.07 446.75 457.95 425.49 464.07 C 425.51 509.38 425.50 554.69 425.50 600.00 L 410.50 600.00 C 410.47 555.79 410.56 511.58 410.46 467.37 C 390.69 470.99 370.27 471.01 350.48 467.57 C 350.53 511.71 350.49 555.86 350.50 600.00 L 335.02 600.00 C 334.98 554.72 335.01 509.45 335.00 464.17 C 305.24 455.99 277.79 439.55 256.60 417.12 C 237.35 396.91 223.22 371.91 215.83 345.00 C 143.88 345.00 71.94 345.00 0.00 345.00 L 0.00 329.50 C 70.81 329.52 141.62 329.47 212.43 329.52 C 208.99 309.73 209.00 289.29 212.63 269.53 C 141.75 269.49 70.88 269.47 0.00 269.54 L 0.00 254.50 C 71.97 254.51 143.95 254.49 215.92 254.51 C 220.48 238.76 226.96 223.51 235.81 209.67 C 258.11 173.81 294.25 146.91 335.00 135.83 C 335.03 90.55 334.92 45.27 335.07 0.00 M 366.57 139.58 C 364.55 140.10 362.44 139.94 360.40 140.35 C 338.03 143.07 316.17 150.51 296.93 162.28 C 264.41 181.72 239.34 213.13 227.38 249.07 C 223.14 261.17 221.03 273.88 219.58 286.57 C 219.67 293.35 218.28 300.13 219.40 306.89 C 220.72 348.65 239.73 389.31 270.36 417.63 C 293.98 439.77 324.53 454.62 356.62 459.08 L 357.49 459.47 C 362.67 459.62 367.77 460.75 372.98 460.58 C 379.78 461.66 386.59 460.35 393.42 460.42 C 408.91 458.86 424.25 455.49 438.78 449.81 C 461.67 440.60 482.68 426.45 499.11 407.97 C 524.39 380.43 539.50 343.68 540.66 306.30 C 541.32 301.60 541.03 296.84 540.55 292.14 C 538.88 245.82 515.20 201.16 478.60 172.93 C 455.84 155.21 428.27 143.68 399.59 140.35 C 397.55 139.95 395.44 140.09 393.43 139.58 C 390.60 139.47 387.76 139.61 384.95 139.19 C 378.82 138.42 372.71 139.73 366.57 139.58 Z" />
|
||||
<path fill="#ffffff" opacity="1.00" d=" M 440.00 0.00 L 455.00 0.00 C 454.99 38.27 455.01 76.55 455.00 114.82 C 504.60 134.59 545.40 175.42 565.18 225.00 C 710.12 224.99 855.06 225.01 1000.00 225.00 L 1000.00 240.00 C 851.66 240.00 703.32 240.00 554.98 240.00 C 549.22 223.88 541.64 208.36 531.69 194.40 C 509.55 162.29 476.84 137.77 440.00 125.03 C 440.00 83.35 440.00 41.68 440.00 0.00 Z" />
|
||||
<path fill="#ffffff" opacity="1.00" d=" M 371.42 148.40 C 377.06 147.73 382.93 147.73 388.57 148.40 C 426.42 150.15 463.31 167.12 489.37 194.62 C 511.98 217.68 526.68 248.38 530.64 280.42 C 531.23 284.06 531.51 287.74 531.60 291.43 C 532.27 297.06 532.27 302.93 531.60 308.57 C 531.53 312.25 531.23 315.93 530.60 319.56 C 530.53 320.51 530.46 321.46 530.41 322.42 C 530.20 323.46 530.00 324.51 529.83 325.56 C 524.12 359.50 506.42 391.19 480.56 413.88 C 455.33 436.39 422.36 449.91 388.61 451.69 C 360.67 453.42 332.29 446.97 307.66 433.68 C 283.51 420.51 262.89 400.76 248.99 377.00 C 239.48 361.26 233.38 343.60 230.15 325.54 C 229.21 319.93 228.54 314.27 228.39 308.58 C 227.74 302.93 227.73 297.06 228.40 291.42 C 228.51 284.75 229.54 278.15 230.60 271.58 C 236.23 242.81 250.00 215.52 270.64 194.62 C 296.71 167.15 333.57 150.12 371.42 148.40 M 320.16 177.61 C 323.38 184.14 326.16 190.88 329.31 197.45 C 330.86 201.52 332.90 205.39 334.31 209.52 C 339.62 222.46 343.18 236.00 346.37 249.58 C 347.02 253.25 347.30 257.01 348.40 260.59 C 347.75 263.10 350.94 267.18 347.96 268.43 C 336.30 267.07 324.77 264.55 313.46 261.41 C 294.14 256.32 276.10 247.56 258.00 239.32 C 258.01 279.61 257.99 319.90 258.01 360.19 C 263.06 358.50 267.67 355.75 272.61 353.76 C 275.22 352.62 277.85 351.53 280.37 350.21 C 283.21 349.27 285.86 347.89 288.62 346.75 C 289.87 346.24 291.13 345.75 292.38 345.22 C 293.79 344.75 295.20 344.25 296.61 343.77 C 313.17 337.66 330.50 333.81 347.93 331.22 C 348.36 331.44 349.21 331.89 349.63 332.11 C 348.65 334.22 348.51 336.53 348.40 338.82 C 345.35 354.99 341.88 371.22 335.63 386.49 C 335.22 387.83 334.78 389.16 334.37 390.50 C 329.84 401.22 324.92 411.78 320.18 422.40 C 360.51 422.60 400.84 422.49 441.16 422.46 C 432.66 403.89 423.82 385.36 418.64 365.53 C 415.76 354.53 413.26 343.37 412.01 332.05 C 412.28 331.80 412.81 331.30 413.07 331.05 C 429.17 333.60 445.12 337.06 460.60 342.25 C 462.82 343.19 465.17 343.79 467.38 344.78 C 468.75 345.34 470.15 345.85 471.61 346.22 C 480.23 350.01 488.83 353.83 497.39 357.76 C 499.27 358.53 501.09 359.44 502.99 360.21 C 503.02 319.89 502.99 279.57 503.00 239.26 C 494.50 243.43 485.88 247.39 477.12 250.99 C 458.01 259.46 437.62 264.81 417.01 268.04 C 415.30 268.19 413.59 268.43 411.88 268.21 C 412.36 262.27 413.83 256.48 414.60 250.61 C 416.82 241.03 419.15 231.46 422.29 222.12 C 426.69 208.52 432.80 195.58 438.80 182.64 C 439.36 180.83 440.20 179.14 441.19 177.54 C 400.85 177.52 360.50 177.38 320.16 177.61 Z" />
|
||||
<path fill="#ffffff" opacity="1.00" d=" M 331.18 184.69 C 332.40 184.25 333.65 184.01 334.94 183.99 C 365.33 184.02 395.71 184.02 426.10 183.99 C 427.50 183.87 428.86 184.26 430.06 185.00 C 427.23 190.70 424.83 196.59 422.22 202.38 C 421.59 204.06 420.94 205.73 420.23 207.39 C 419.27 210.07 418.27 212.74 417.24 215.40 C 410.41 235.20 405.94 255.82 403.91 276.61 C 407.45 276.46 410.86 275.21 414.44 275.42 C 416.71 274.73 419.08 274.46 421.46 274.44 C 422.48 274.14 423.51 273.85 424.55 273.56 C 429.53 273.54 434.20 271.50 439.10 270.77 C 453.95 267.25 468.47 262.38 482.49 256.33 C 486.74 254.30 491.26 252.80 495.29 250.32 C 496.13 251.40 496.54 252.61 496.52 253.94 C 496.48 282.28 496.50 310.62 496.50 338.95 C 496.39 342.31 496.70 345.72 496.15 349.05 C 495.71 349.01 494.81 348.92 494.37 348.88 C 483.68 343.75 472.73 339.14 461.50 335.33 C 450.65 331.71 439.56 328.96 428.39 326.54 C 427.95 326.52 427.08 326.47 426.64 326.45 C 423.27 325.75 419.90 324.98 416.45 324.88 C 412.35 323.79 408.07 323.86 403.90 323.22 C 405.92 342.23 409.53 361.26 415.78 379.40 C 419.48 391.74 424.88 403.49 430.24 415.20 C 426.19 415.76 422.10 415.42 418.03 415.50 C 389.10 415.46 360.17 415.58 331.24 415.44 C 332.52 410.81 335.15 406.70 336.81 402.20 C 345.69 382.19 351.64 360.97 355.40 339.43 C 355.76 333.90 356.90 328.45 357.32 322.93 C 352.08 323.99 346.74 324.37 341.45 325.14 C 324.07 327.91 306.99 332.47 290.52 338.67 C 283.80 341.08 277.33 344.07 270.82 346.97 C 268.99 347.97 267.10 348.88 265.01 349.18 C 264.98 316.33 265.00 283.47 265.01 250.61 C 267.72 250.97 270.04 252.51 272.51 253.58 C 276.08 255.40 279.90 256.62 283.51 258.33 C 306.95 268.17 331.94 273.94 357.13 276.64 C 357.01 271.24 355.73 265.95 355.39 260.57 C 352.15 241.24 347.04 222.19 339.53 204.07 C 337.09 197.46 333.82 191.21 331.18 184.69 M 342.86 191.98 C 343.68 194.95 345.10 197.70 346.34 200.51 C 354.96 221.59 360.90 243.83 363.62 266.44 C 364.74 271.98 364.57 277.68 365.52 283.26 C 365.30 283.64 364.88 284.41 364.67 284.80 C 360.15 283.68 355.44 284.49 350.95 283.43 C 330.40 281.13 310.06 276.30 290.60 269.25 C 284.64 267.08 278.80 264.60 273.00 262.04 C 273.00 287.26 273.01 312.48 272.99 337.70 C 276.52 336.36 279.93 334.73 283.39 333.22 C 286.08 332.29 288.74 331.27 291.40 330.24 C 312.70 322.50 335.03 317.67 357.58 315.62 C 360.13 315.53 362.68 315.29 365.21 314.88 C 365.47 319.41 364.28 323.88 364.40 328.42 C 364.19 329.47 364.02 330.54 363.89 331.61 L 363.51 332.47 C 363.49 334.18 363.51 335.90 363.18 337.59 C 359.48 361.41 353.16 384.99 342.90 406.84 C 367.99 407.21 393.09 406.89 418.18 407.00 C 416.63 403.52 415.23 399.98 413.62 396.52 C 412.34 392.80 411.14 389.04 409.51 385.45 L 409.48 384.57 C 404.63 371.35 401.51 357.53 399.04 343.70 C 398.36 342.05 398.49 340.26 398.47 338.53 C 398.15 337.51 397.84 336.49 397.52 335.47 C 397.64 332.86 397.43 330.26 396.64 327.76 C 396.26 323.86 396.96 319.79 395.40 316.06 C 397.61 314.03 400.76 315.93 403.43 315.62 C 424.47 317.49 445.42 321.76 465.41 328.76 C 467.79 329.61 470.20 330.40 472.61 331.21 C 477.91 333.32 483.14 335.61 488.49 337.62 C 488.60 312.44 488.36 287.25 488.60 262.07 C 460.85 274.10 431.15 282.37 400.96 284.19 C 399.11 284.50 397.15 285.03 395.42 284.02 C 397.34 279.09 395.64 273.73 397.33 268.79 C 398.72 254.52 401.91 240.44 405.63 226.59 C 409.52 214.88 413.10 202.98 418.75 191.96 C 393.45 192.02 368.16 191.92 342.86 191.98 Z" />
|
||||
<path fill="#ffffff" opacity="1.00" d=" M 0.00 360.00 C 68.34 360.00 136.68 360.00 205.03 360.00 C 214.11 385.77 228.51 409.81 247.88 429.15 C 267.80 449.92 292.89 465.46 320.00 474.98 C 320.00 516.65 320.00 558.33 320.00 600.00 L 305.00 600.00 C 305.00 561.72 305.00 523.45 305.00 485.18 C 255.41 465.40 214.61 424.58 194.81 375.00 C 129.87 375.00 64.94 375.00 0.00 375.00 L 0.00 360.00 Z" />
|
||||
<path fill="#ffffff" opacity="1.00" d=" M 554.98 360.00 C 703.32 360.00 851.66 360.00 1000.00 360.00 L 1000.00 375.01 C 855.06 374.99 710.12 375.01 565.18 375.00 C 545.39 424.57 504.57 465.39 455.00 485.18 C 455.01 523.45 454.99 561.72 455.00 600.00 L 440.00 600.00 C 440.00 558.32 440.00 516.65 440.00 474.97 C 456.85 468.99 473.00 460.94 487.44 450.37 C 518.65 428.27 542.46 396.11 554.98 360.00 Z" />
|
||||
</g>
|
||||
<g id="#010101ff">
|
||||
<path fill="#010101" opacity="1.00" d=" M 320.00 0.00 L 335.07 0.00 C 334.92 45.27 335.03 90.55 335.00 135.83 C 294.25 146.91 258.11 173.81 235.81 209.67 C 226.96 223.51 220.48 238.76 215.92 254.51 C 143.95 254.49 71.97 254.51 0.00 254.50 L 0.00 240.00 C 68.34 240.00 136.68 240.00 205.03 240.00 C 215.62 209.51 234.14 181.80 258.56 160.67 C 276.42 144.87 297.54 132.94 320.00 125.03 C 320.00 83.35 320.00 41.68 320.00 0.00 Z" />
|
||||
<path fill="#010101" opacity="1.00" d=" M 350.50 0.00 L 410.50 0.00 C 410.48 44.21 410.54 88.42 410.47 132.63 C 390.70 129.00 370.28 129.02 350.48 132.42 C 350.53 88.28 350.48 44.14 350.50 0.00 Z" />
|
||||
<path fill="#010101" opacity="1.00" d=" M 425.50 0.00 L 440.00 0.00 C 440.00 41.68 440.00 83.35 440.00 125.03 C 476.84 137.77 509.55 162.29 531.69 194.40 C 541.64 208.36 549.22 223.88 554.98 240.00 C 703.32 240.00 851.66 240.00 1000.00 240.00 L 1000.00 254.50 C 848.02 254.46 696.05 254.50 544.07 254.51 C 533.41 216.20 508.97 181.97 476.11 159.57 C 460.73 148.84 443.39 141.31 425.48 135.90 C 425.52 90.60 425.49 45.30 425.50 0.00 Z" />
|
||||
<path fill="#010101" opacity="1.00" d=" M 366.57 139.58 C 372.71 139.73 378.82 138.42 384.95 139.19 C 387.76 139.61 390.60 139.47 393.43 139.58 C 395.44 140.09 397.55 139.95 399.59 140.35 C 428.27 143.68 455.84 155.21 478.60 172.93 C 515.20 201.16 538.88 245.82 540.55 292.14 C 541.03 296.84 541.32 301.60 540.66 306.30 C 539.50 343.68 524.39 380.43 499.11 407.97 C 482.68 426.45 461.67 440.60 438.78 449.81 C 424.25 455.49 408.91 458.86 393.42 460.42 C 386.59 460.35 379.78 461.66 372.98 460.58 C 367.77 460.75 362.67 459.62 357.49 459.47 L 356.62 459.08 C 324.53 454.62 293.98 439.77 270.36 417.63 C 239.73 389.31 220.72 348.65 219.40 306.89 C 218.28 300.13 219.67 293.35 219.58 286.57 C 221.03 273.88 223.14 261.17 227.38 249.07 C 239.34 213.13 264.41 181.72 296.93 162.28 C 316.17 150.51 338.03 143.07 360.40 140.35 C 362.44 139.94 364.55 140.10 366.57 139.58 M 371.42 148.40 C 333.57 150.12 296.71 167.15 270.64 194.62 C 250.00 215.52 236.23 242.81 230.60 271.58 C 229.54 278.15 228.51 284.75 228.40 291.42 C 227.73 297.06 227.74 302.93 228.39 308.58 C 228.54 314.27 229.21 319.93 230.15 325.54 C 233.38 343.60 239.48 361.26 248.99 377.00 C 262.89 400.76 283.51 420.51 307.66 433.68 C 332.29 446.97 360.67 453.42 388.61 451.69 C 422.36 449.91 455.33 436.39 480.56 413.88 C 506.42 391.19 524.12 359.50 529.83 325.56 C 530.00 324.51 530.20 323.46 530.41 322.42 C 530.46 321.46 530.53 320.51 530.60 319.56 C 531.23 315.93 531.53 312.25 531.60 308.57 C 532.27 302.93 532.27 297.06 531.60 291.43 C 531.51 287.74 531.23 284.06 530.64 280.42 C 526.68 248.38 511.98 217.68 489.37 194.62 C 463.31 167.12 426.42 150.15 388.57 148.40 C 382.93 147.73 377.06 147.73 371.42 148.40 Z" />
|
||||
<path fill="#010101" opacity="1.00" d=" M 320.16 177.61 C 360.50 177.38 400.85 177.52 441.19 177.54 C 440.20 179.14 439.36 180.83 438.80 182.64 C 432.80 195.58 426.69 208.52 422.29 222.12 C 419.15 231.46 416.82 241.03 414.60 250.61 C 413.83 256.48 412.36 262.27 411.88 268.21 C 413.59 268.43 415.30 268.19 417.01 268.04 C 437.62 264.81 458.01 259.46 477.12 250.99 C 485.88 247.39 494.50 243.43 503.00 239.26 C 502.99 279.57 503.02 319.89 502.99 360.21 C 501.09 359.44 499.27 358.53 497.39 357.76 C 488.83 353.83 480.23 350.01 471.61 346.22 C 470.15 345.85 468.75 345.34 467.38 344.78 C 465.17 343.79 462.82 343.19 460.60 342.25 C 445.12 337.06 429.17 333.60 413.07 331.05 C 412.81 331.30 412.28 331.80 412.01 332.05 C 413.26 343.37 415.76 354.53 418.64 365.53 C 423.82 385.36 432.66 403.89 441.16 422.46 C 400.84 422.49 360.51 422.60 320.18 422.40 C 324.92 411.78 329.84 401.22 334.37 390.50 C 334.78 389.16 335.22 387.83 335.63 386.49 C 341.88 371.22 345.35 354.99 348.40 338.82 C 348.51 336.53 348.65 334.22 349.63 332.11 C 349.21 331.89 348.36 331.44 347.93 331.22 C 330.50 333.81 313.17 337.66 296.61 343.77 C 295.20 344.25 293.79 344.75 292.38 345.22 C 291.13 345.75 289.87 346.24 288.62 346.75 C 285.86 347.89 283.21 349.27 280.37 350.21 C 277.85 351.53 275.22 352.62 272.61 353.76 C 267.67 355.75 263.06 358.50 258.01 360.19 C 257.99 319.90 258.01 279.61 258.00 239.32 C 276.10 247.56 294.14 256.32 313.46 261.41 C 324.77 264.55 336.30 267.07 347.96 268.43 C 350.94 267.18 347.75 263.10 348.40 260.59 C 347.30 257.01 347.02 253.25 346.37 249.58 C 343.18 236.00 339.62 222.46 334.31 209.52 C 332.90 205.39 330.86 201.52 329.31 197.45 C 326.16 190.88 323.38 184.14 320.16 177.61 M 331.18 184.69 C 333.82 191.21 337.09 197.46 339.53 204.07 C 347.04 222.19 352.15 241.24 355.39 260.57 C 355.73 265.95 357.01 271.24 357.13 276.64 C 331.94 273.94 306.95 268.17 283.51 258.33 C 279.90 256.62 276.08 255.40 272.51 253.58 C 270.04 252.51 267.72 250.97 265.01 250.61 C 265.00 283.47 264.98 316.33 265.01 349.18 C 267.10 348.88 268.99 347.97 270.82 346.97 C 277.33 344.07 283.80 341.08 290.52 338.67 C 306.99 332.47 324.07 327.91 341.45 325.14 C 346.74 324.37 352.08 323.99 357.32 322.93 C 356.90 328.45 355.76 333.90 355.40 339.43 C 351.64 360.97 345.69 382.19 336.81 402.20 C 335.15 406.70 332.52 410.81 331.24 415.44 C 360.17 415.58 389.10 415.46 418.03 415.50 C 422.10 415.42 426.19 415.76 430.24 415.20 C 424.88 403.49 419.48 391.74 415.78 379.40 C 409.53 361.26 405.92 342.23 403.90 323.22 C 408.07 323.86 412.35 323.79 416.45 324.88 C 419.90 324.98 423.27 325.75 426.64 326.45 C 427.08 326.47 427.95 326.52 428.39 326.54 C 439.56 328.96 450.65 331.71 461.50 335.33 C 472.73 339.14 483.68 343.75 494.37 348.88 C 494.81 348.92 495.71 349.01 496.15 349.05 C 496.70 345.72 496.39 342.31 496.50 338.95 C 496.50 310.62 496.48 282.28 496.52 253.94 C 496.54 252.61 496.13 251.40 495.29 250.32 C 491.26 252.80 486.74 254.30 482.49 256.33 C 468.47 262.38 453.95 267.25 439.10 270.77 C 434.20 271.50 429.53 273.54 424.55 273.56 C 423.51 273.85 422.48 274.14 421.46 274.44 C 419.08 274.46 416.71 274.73 414.44 275.42 C 410.86 275.21 407.45 276.46 403.91 276.61 C 405.94 255.82 410.41 235.20 417.24 215.40 C 418.27 212.74 419.27 210.07 420.23 207.39 C 420.94 205.73 421.59 204.06 422.22 202.38 C 424.83 196.59 427.23 190.70 430.06 185.00 C 428.86 184.26 427.50 183.87 426.10 183.99 C 395.71 184.02 365.33 184.02 334.94 183.99 C 333.65 184.01 332.40 184.25 331.18 184.69 Z" />
|
||||
<path fill="#010101" opacity="1.00" d=" M 342.86 191.98 C 368.16 191.92 393.45 192.02 418.75 191.96 C 413.10 202.98 409.52 214.88 405.63 226.59 C 401.91 240.44 398.72 254.52 397.33 268.79 C 395.64 273.73 397.34 279.09 395.42 284.02 C 397.15 285.03 399.11 284.50 400.96 284.19 C 431.15 282.37 460.85 274.10 488.60 262.07 C 488.36 287.25 488.60 312.44 488.49 337.62 C 483.14 335.61 477.91 333.32 472.61 331.21 C 470.20 330.40 467.79 329.61 465.41 328.76 C 445.42 321.76 424.47 317.49 403.43 315.62 C 400.76 315.93 397.61 314.03 395.40 316.06 C 396.96 319.79 396.26 323.86 396.64 327.76 C 397.43 330.26 397.64 332.86 397.52 335.47 C 397.84 336.49 398.15 337.51 398.47 338.53 C 398.49 340.26 398.36 342.05 399.04 343.70 C 401.51 357.53 404.63 371.35 409.48 384.57 L 409.51 385.45 C 411.14 389.04 412.34 392.80 413.62 396.52 C 415.23 399.98 416.63 403.52 418.18 407.00 C 393.09 406.89 367.99 407.21 342.90 406.84 C 353.16 384.99 359.48 361.41 363.18 337.59 C 363.51 335.90 363.49 334.18 363.51 332.47 L 363.89 331.61 C 364.02 330.54 364.19 329.47 364.40 328.42 C 364.28 323.88 365.47 319.41 365.21 314.88 C 362.68 315.29 360.13 315.53 357.58 315.62 C 335.03 317.67 312.70 322.50 291.40 330.24 C 288.74 331.27 286.08 332.29 283.39 333.22 C 279.93 334.73 276.52 336.36 272.99 337.70 C 273.01 312.48 273.00 287.26 273.00 262.04 C 278.80 264.60 284.64 267.08 290.60 269.25 C 310.06 276.30 330.40 281.13 350.95 283.43 C 355.44 284.49 360.15 283.68 364.67 284.80 C 364.88 284.41 365.30 283.64 365.52 283.26 C 364.57 277.68 364.74 271.98 363.62 266.44 C 360.90 243.83 354.96 221.59 346.34 200.51 C 345.10 197.70 343.68 194.95 342.86 191.98 Z" />
|
||||
<path fill="#010101" opacity="1.00" d=" M 0.00 269.54 C 70.88 269.47 141.75 269.49 212.63 269.53 C 209.00 289.29 208.99 309.73 212.43 329.52 C 141.62 329.47 70.81 329.52 0.00 329.50 L 0.00 269.54 Z" />
|
||||
<path fill="#010101" opacity="1.00" d=" M 547.37 269.53 C 698.25 269.45 849.12 269.55 1000.00 269.50 L 1000.00 329.50 C 849.19 329.54 698.39 329.46 547.58 329.52 C 550.98 309.72 551.00 289.30 547.37 269.53 Z" />
|
||||
<path fill="#010101" opacity="1.00" d=" M 0.00 345.00 C 71.94 345.00 143.88 345.00 215.83 345.00 C 223.22 371.91 237.35 396.91 256.60 417.12 C 277.79 439.55 305.24 455.99 335.00 464.17 C 335.01 509.45 334.98 554.72 335.02 600.00 L 320.00 600.00 C 320.00 558.33 320.00 516.65 320.00 474.98 C 292.89 465.46 267.80 449.92 247.88 429.15 C 228.51 409.81 214.11 385.77 205.03 360.00 C 136.68 360.00 68.34 360.00 0.00 360.00 L 0.00 345.00 Z" />
|
||||
<path fill="#010101" opacity="1.00" d=" M 544.17 345.00 C 696.12 345.00 848.06 345.00 1000.00 345.00 L 1000.00 360.00 C 851.66 360.00 703.32 360.00 554.98 360.00 C 542.46 396.11 518.65 428.27 487.44 450.37 C 473.00 460.94 456.85 468.99 440.00 474.97 C 440.00 516.65 440.00 558.32 440.00 600.00 L 425.50 600.00 C 425.50 554.69 425.51 509.38 425.49 464.07 C 446.75 457.95 466.99 448.07 484.36 434.31 C 513.27 412.07 534.50 380.15 544.17 345.00 Z" />
|
||||
<path fill="#010101" opacity="1.00" d=" M 350.48 467.57 C 370.27 471.01 390.69 470.99 410.46 467.37 C 410.56 511.58 410.47 555.79 410.50 600.00 L 350.50 600.00 C 350.49 555.86 350.53 511.71 350.48 467.57 Z" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 20 KiB |
|
@ -324,7 +324,7 @@ ajax.callback.index_data = function(data) {
|
|||
<td id="user_regdate">
|
||||
<span class="editable bold">{USER_REGDATE}</span>
|
||||
<!-- IF IS_ADMIN -->
|
||||
[ <a href="#admin" class="menu-root menu-alt1"><span class="adm">{L_MANAGE_USER}</span></a> ]
|
||||
[ <a href="#admin" class="adm menu-root menu-alt1">{L_MANAGE_USER}</a> ]
|
||||
<div class="menu-sub row1 border bw_TRBL" id="admin">
|
||||
<fieldset class="mrg_6">
|
||||
<div class="tLeft" style="padding: 5px 6px 6px; display: block; font-size: 13px;">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue