mirror of
https://github.com/Daichimarukana/uwuzu.git
synced 2026-06-04 19:14:41 +00:00
uwuzu v1.4.1 Funium
This commit is contained in:
+1
-1
@@ -230,7 +230,7 @@ if( !empty($_POST['btn_submit']) ) {
|
||||
if($result->rowCount() > 0) {
|
||||
$row = $result->fetch();
|
||||
|
||||
if(!(empty($row["encryption_ivkey"])) && (!($row["authcode"] === 16))){
|
||||
if(!(empty($row["encryption_ivkey"])) && (!(mb_strlen($row["authcode"]) === 16))){
|
||||
$tousercode = DecryptionUseEncrKey($row["authcode"], GenUserEnckey($row["datetime"]), $row["encryption_ivkey"]);
|
||||
}else{
|
||||
$tousercode = $row["authcode"];
|
||||
|
||||
@@ -168,7 +168,7 @@ if(!($userid == null)){
|
||||
if($result->rowCount() > 0) {
|
||||
$row = $result->fetch();
|
||||
|
||||
if(!(empty($row["encryption_ivkey"])) && (!($row["authcode"] === 16))){
|
||||
if(!(empty($row["encryption_ivkey"])) && (!(mb_strlen($row["authcode"]) === 16))){
|
||||
$tousercode = DecryptionUseEncrKey($row["authcode"], GenUserEnckey($row["datetime"]), $row["encryption_ivkey"]);
|
||||
}else{
|
||||
$tousercode = $row["authcode"];
|
||||
|
||||
@@ -245,4 +245,4 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
## 更新情報
|
||||
編集者 : daichimarukana
|
||||
最終更新日 : 2024/08/18 19:43
|
||||
最終更新日 : 2024/03/26 22:32
|
||||
@@ -1,4 +1,4 @@
|
||||
uwuzu
|
||||
1.4.0
|
||||
1.4.1
|
||||
2024/08/18
|
||||
daichimarukana,putonfps
|
||||
@@ -1,6 +1,10 @@
|
||||
## リリースノートだぜぇぇぇぇぇぇい!!!!!!!
|
||||
ここにはuwuzuの更新情報を載せてくぜぇ~!(いやまてテンションおかしいだろ...)
|
||||
|
||||
### Version 1.4.1 (Funium)
|
||||
リリース日:2024/08/18
|
||||
fix: 二段階認証を設定しているアカウントがログインできない問題を修正しました。
|
||||
|
||||
### Version 1.4.0 (Funium)
|
||||
リリース日:2024/08/18
|
||||
fix: php 8.3未満のphpを使用していた場合にエラーが発生してしまう問題を修正しました。
|
||||
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"software": "uwuzu",
|
||||
"version": "1.4.1",
|
||||
"release_date": "2024-08-18",
|
||||
"release_notes": "このアップデートでは二段階認証を設定しているユーザーがログインできない問題を修正しました。\n他の変更点はありません。",
|
||||
"notices": "アップデートの前に、データのバックアップを行うことをおすすめします!",
|
||||
"files": {
|
||||
"overwrite": [
|
||||
"/authlogin.php",
|
||||
"/passrecovery/startrecovery.php",
|
||||
"/server/uwuzuabout.txt",
|
||||
"/server/uwuzuinfo.txt",
|
||||
"/server/uwuzurelease.txt"
|
||||
],
|
||||
"delete": []
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user