Browse Source

add custom initial revisions number

main
ghost 3 years ago
parent
commit
3baeca3365
  1. 10
      src/application/controller/settings/profile.php
  2. 2
      src/config-default.php

10
src/application/controller/settings/profile.php

@ -68,6 +68,11 @@ if (isset($_POST) && !empty($_POST)) { @@ -68,6 +68,11 @@ if (isset($_POST) && !empty($_POST)) {
// Get avatar revision
$avatarSeq = $_modelAvatar->getMaxSeq($_SESSION['userId']) + 1;
// Custom initial revision
if ($avatarSeq == 1) {
$avatarSeq = $avatarSeq + TWISTER_SEQ_START_FROM;
}
// Save avatar revision to DHT
$_twister->putDHT($_SESSION['userName'],
'avatar',
@ -95,6 +100,11 @@ if (isset($_POST) && !empty($_POST)) { @@ -95,6 +100,11 @@ if (isset($_POST) && !empty($_POST)) {
// Get profile revision
$profileSeq = $_modelProfile->getMaxSeq($_SESSION['userId']) + 1;
// Custom initial revision
if ($profileSeq == 1) {
$profileSeq = $profileSeq + TWISTER_SEQ_START_FROM;
}
// Save profile revision to DHT
$_twister->putDHT($_SESSION['userName'],
'profile',

2
src/config-default.php

@ -22,6 +22,8 @@ define('TWISTER_PROTOCOL', ''); @@ -22,6 +22,8 @@ define('TWISTER_PROTOCOL', '');
define('TWISTER_USER', '');
define('TWISTER_PASSWORD', '');
define('TWISTER_SEQ_START_FROM', 0); // Start initial DHT revision from
// MEMCACHE
define('MEMCACHE_HOST', 'localhost');
define('MEMCACHE_PORT', 11211);

Loading…
Cancel
Save