Skip to content

Commit

Permalink
Closes #505
Browse files Browse the repository at this point in the history
  • Loading branch information
overkam committed Jan 14, 2019
1 parent 5a990cf commit ea2f35d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion www/application/classes/Controller/Articles/Modify.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public function action_save()
return;
}

$uri = strtolower(Arr::get($_POST, 'uri'));
$uri = strtolower(Arr::get($_POST, 'uri'));
$alias = Model_Aliases::generateUri($uri);

if ($article_id) {
Expand Down
2 changes: 1 addition & 1 deletion www/application/classes/Controller/Users/Index.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function action_settings()
$name = Arr::get($_POST, 'name');
$bio = Arr::get($_POST, 'bio');
$alias = Arr::get($_POST, 'alias');
$alias = strtolower(Arr::get($_POST, 'alias'));
$alias = strtolower(Arr::get($_POST, 'alias'));

$instagram_uri = $this->methods->parseUri(Arr::get($_POST, 'instagram_uri'));
$vk_uri = $this->methods->parseUri(Arr::get($_POST, 'vk_uri'));
Expand Down

0 comments on commit ea2f35d

Please sign in to comment.