mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 09:37:26 +00:00
8 lines
311 B
PHP
8 lines
311 B
PHP
<?php
|
|
$desired_lbry_channel_name = Request::encodeStringFromUser($_POST['desired_lbry_channel_name']);
|
|
|
|
if (!preg_match("/@[A-Za-z0-9_-]+$/", $desired_lbry_channel_name)) {
|
|
$desired_lbry_channel_name = "@" . $desired_lbry_channel_name;
|
|
}
|
|
|
|
AcquisitionActions::actionYoutubeToken($desired_lbry_channel_name);
|