Small fixes

- Avoid an intermediate variable
- Use `rawContent()` in `Attach` module
- Small typo
This commit is contained in:
fabrixxm 2019-01-04 07:45:08 +01:00 committed by Hypolite Petovan
parent 2f49c4a058
commit 518f28a7bf
3 changed files with 5 additions and 8 deletions

View File

@ -114,8 +114,7 @@ function videos_post(App $a)
$video_id = $_POST['id']; $video_id = $_POST['id'];
$r = Attach::exists(['id' => $video_id, 'uid' => local_user()]); if (Attach::exists(['id' => $video_id, 'uid' => local_user()])) {
if ($r === true) {
// delete the attachment // delete the attachment
Attach::delete(['id' => $video_id, 'uid' => local_user()]); Attach::delete(['id' => $video_id, 'uid' => local_user()]);

View File

@ -22,7 +22,7 @@ Synopsis
Show this help Show this help
bin/console storage list bin/console storage list
List avaiable storage backends List available storage backends
bin/console storage set <name> bin/console storage set <name>
Set current storage backend Set current storage backend

View File

@ -18,11 +18,9 @@ use Friendica\Model\Attach as MAttach;
class Attach extends BaseModule class Attach extends BaseModule
{ {
/** /**
* @brief Module initializer * @brief Return to user an attached file given the id
*
* Fetch an attached file given the id
*/ */
public static function init() public static function rawContent()
{ {
$a = self::getApp(); $a = self::getApp();
if ($a->argc != 2) { if ($a->argc != 2) {
@ -64,4 +62,4 @@ class Attach extends BaseModule
exit(); exit();
// NOTREACHED // NOTREACHED
} }
} }