このコミットが含まれているのは:
守矢諏訪子 2023-09-09 21:43:01 +09:00
コミット eeba0ae9d8
2個のファイルの変更7行の追加2行の削除

ファイルの表示

@ -1,3 +1,8 @@
# 1.1.1
* YouTube動画があれば、オワコンYouTubeに変更させる様に
* サムネイルがなければ、getimg()関数をす部に終了する様に
* もっと小さいバグを修正
# 1.1.0
* 画像はimgproxy化
* カテゴリーを追加

ファイルの表示

@ -4,7 +4,7 @@
/* ページのタイトル */
function gettitle (string $str): string {
preg_match("/<title>(.*)<\/title>/", $str, $matches);
return $matches[1];
return isset($matches[1]) ? $matches[1] : "";
}
function getimg (string $str): string {
@ -152,7 +152,7 @@
<body>
<?= $out["content"] ?>
<p class="footer">
Spliti 1.1.0 |
Spliti 1.1.1 |
<a href="https://gitler.moe/suwako/spliti"><img src="/git.png" alt="Git"></a> |
<a href="https://076.moe/"></a>
</p>