diff --git a/.gitignore b/.gitignore
index 869656cf596007becd9c3fd3b1eaedecc0522ab8..12747d6b49c2e5e8b68c4f4769c124abefe9f649 100644
--- a/.gitignore
+++ b/.gitignore
@@ -31,10 +31,6 @@ public/pictures/banner/*.jpg
 public/pictures/banner/*.png
 public/pictures/course/[0-9a-f]*.png
 public/pictures/institute/[0-9a-f]*.png
-public/pictures/smile/*.gif
-public/pictures/smile/*.jpeg
-public/pictures/smile/*.jpg
-public/pictures/smile/*.png
 public/pictures/user/[0-9a-f]*.png
 public/plugins_packages/*
 
diff --git a/app/controllers/admin/smileys.php b/app/controllers/admin/smileys.php
deleted file mode 100644
index 7b4a7747970a484b04e2c57f581ff28526b6f726..0000000000000000000000000000000000000000
--- a/app/controllers/admin/smileys.php
+++ /dev/null
@@ -1,320 +0,0 @@
-<?php
-/**
- * smileys.php - controller class for the smileys administration
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * @author   Jan-Hendrik Willms <tleilax+studip@gmail.com>
- * @author   Tobias Thelen <tthelen@uos.de>
- * @author   Jens Schmelzer <jens.schmelzer@fh-jena.de>
- * @license  http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
- * @category Stud.IP
- * @package  smiley
- * @since    2.3
- */
-class Admin_SmileysController extends AuthenticatedController
-{
-    /**
-     * Common tasks for all actions.
-     */
-    public function before_filter(&$action, &$args)
-    {
-        parent::before_filter($action, $args);
-
-        // user must have root permission
-        $GLOBALS['perm']->check('root');
-
-        // set navigation
-        Navigation::activateItem('/admin/config/smileys');
-
-        //pagelayout
-        PageLayout::setTitle(_('Verwaltung der Smileys'));
-    }
-
-    /**
-     * Administrtion view for smileys
-     */
-    public function index_action()
-    {
-        $this->view              = Request::option('view', Smiley::getFirstUsedCharacter() ?: 'a');
-        $this->smileys           = Smiley::getGrouped($this->view);
-        $this->favorites_enabled = SmileyFavorites::isEnabled();
-
-        $this->setSidebar($this->view);
-    }
-
-    /**
-     * Displays edit form and performs according actions upon submit
-     *
-     * @param int    $id   Id of the smiley to edit
-     * @param String $view View to return to after editing
-     */
-    public function edit_action($id, $view)
-    {
-        PageLayout::setTitle(_('Smiley bearbeiten'));
-
-        $smiley = Smiley::getById($id);
-
-        if (Request::submitted('edit')) {
-            $success = true;
-
-            $name = Request::get('name', $smiley->name);
-            if ($smiley->name != $name) { // rename smiley
-                if (Smiley::getByName($name)->id) {
-                    $error = sprintf(_('Es existiert bereits eine Datei mit dem Namen "%s".'), $name . '.gif');
-                    PageLayout::postError($error);
-                    $success = false;
-                } elseif (!$smiley->rename($name)) {
-                    $error = sprintf(_('Die Datei "%s" konnte nicht umbenannt werden.'), $smiley->name . '.gif');
-                    PageLayout::postError($error);
-                    $success = false;
-                } else {
-                    PageLayout::postSuccess(_('Smiley erfolgreich umbenannt.'));
-                }
-            }
-
-            $short = Request::get('short', $smiley->short);
-            if ($smiley->short != $short) { // rename short
-                if (Smiley::getByShort($short)->id) {
-                    $error = sprintf(_('Es gibt bereits einen Smileys mit dem Kürzel "%s".'), $short);
-                    PageLayout::postError($error);
-                    $success = false;
-                } else {
-                    $smiley->short = $short;
-                    $smiley->store();
-                    PageLayout::postSuccess(_('Kürzel erfolgreich geändert.'));
-                }
-            }
-
-            if ($success) {
-                $this->redirect('admin/smileys?view=' . $smiley->name[0] . '#smiley' . $smiley->id);
-            } else {
-                $this->redirect($this->url_for('admin/smileys/edit', $id, $view));
-            }
-        }
-
-        $this->smiley = $smiley;
-        $this->view   = $view;
-    }
-
-    /**
-     * Deletes a smiley
-     *
-     * @param int    $id   Id of the smiley to delete
-     * @param String $view View to return to after deletion
-     * @todo needs some of confirmation
-     */
-    public function delete_action($id, $view)
-    {
-        if ($id == 'bulk') {
-            $ids = Request::intArray('smiley_id');
-            Smiley::remove($ids);
-            $message = sprintf(_('%d Smiley(s) erfolgreich gelöscht.'), count($ids));
-        } else {
-            $smiley = Smiley::getById($id);
-            $name = $smiley->name;
-            $smiley->delete();
-
-            $message = sprintf(_('Smiley "%s" erfolgreich gelöscht.'), $name);
-        }
-        PageLayout::postSuccess($message);
-
-        $this->redirect('admin/smileys?view=' . $view);
-    }
-
-    /**
-     * Counts all smiley occurences systemwide and updates the smileys' counters
-     *
-     * @param String $view View to return to
-     */
-    public function count_action($view)
-    {
-        $updated = Smiley::updateUsage();
-
-        $message  = sprintf(_('%d Zählerstände aktualisiert'), $updated);
-        $msg = $updated > 0
-            ? MessageBox::success($message)
-            : MessageBox::info($message);
-        PageLayout::postMessage($msg);
-
-        $this->redirect('admin/smileys?view=' . $view);
-    }
-
-    /**
-     * Refreshes the smiley table by aligning it with the file system
-     *
-     * @param String $view View to return to
-     */
-    public function refresh_action($view)
-    {
-        $result = Smiley::refresh();
-
-        $message = sprintf(_('%u Operationen wurden durchgeführt.'), array_sum($result));
-        $details = [
-            sprintf(_('%d Smileys aktualisiert'), $result['update']),
-            sprintf(_('%d Smileys eingefügt'), $result['insert']),
-            sprintf(_('%d Smileys gelöscht'), $result['delete'])
-        ];
-        if (isset($result['favorites'])) {
-            $details[] = sprintf(_('%d Favoriten geändert'), $result['favorites']);
-        }
-        $msg = array_sum($result) > 0
-            ? MessageBox::success($message, $details, true)
-            : MessageBox::info($message, $details, true);
-        PageLayout::postMessage($msg);
-
-        $this->redirect('admin/smileys?view=' . $view);
-    }
-
-    /**
-     * Displays upload form and processes the upload command
-     *
-     * @param String $view View to return to if canceled
-     */
-    public function upload_action($view)
-    {
-        PageLayout::setTitle(_('Neues Smiley hochladen'));
-
-        if (!Request::submitted('upload')) {
-            $this->view = $view;
-            return;
-        }
-
-        // File submitted?
-        $upload = $_FILES['smiley_file'];
-        if (empty($upload) || empty($upload['name'])) {
-            $error = _('Sie haben keine Datei zum Hochladen ausgewählt!');
-            PageLayout::postError($error);
-            return;
-        }
-
-        // Error upon upload?
-        if ($upload['error']) {
-            $error = _('Es gab einen Fehler beim Upload. Bitte versuchen Sie es erneut.');
-            PageLayout::postError($error);
-            return;
-        }
-
-        // Correct mime-type?
-        $no_image = !empty($upload['type']) && mb_substr($upload['type'], 0, 5) != 'image';
-        if (!$no_image) {
-            $image_info = getimagesize($upload['tmp_name']); // Used later on!
-            $no_gif = $image_info[2] != IMAGETYPE_GIF;
-        }
-        if ($no_image) {
-            $error = _('Die Datei ist keine Bilddatei');
-            PageLayout::postError($error);
-            return;
-        }
-
-        // Extract smiley information
-        $smiley_file = $upload['name'];
-        $smiley_name = mb_substr($smiley_file, 0, mb_strrpos($smiley_file, '.'));
-
-        // Replace smiley?
-        $smiley = Smiley::getByName($smiley_name);
-        $replace = Request::int('replace');
-        if ($smiley->id && !$replace) {
-            $error = sprintf(_('Es ist bereits eine Bildatei mit dem Namen "%s" vorhanden.'), $smiley_file);
-            PageLayout::postError($error);
-            return;
-        }
-
-        // Copy file into file system
-        $destination = Smiley::getFilename($smiley_file);
-        if (!move_uploaded_file($upload['tmp_name'], $destination)) {
-            $error = _('Es ist ein Fehler beim Kopieren der Datei aufgetreten. Das Bild wurde nicht hochgeladen!');
-            PageLayout::postError($error);
-            return;
-        }
-
-        // set permissions for uploaded file
-        chmod($destination, 0666 & ~umask());
-
-        // Import smiley into database
-        Smiley::refresh($destination);
-
-        // Output appropriate wurde message
-        $message = $replace
-                 ? sprintf(_('Die Bilddatei "%s" wurde erfolgreich ersetzt.'), $smiley_file)
-                 : sprintf(_('Die Bilddatei "%s" wurde erfolgreich hochgeladen.'), $smiley_file);
-        PageLayout::postSuccess($message);
-
-        // Return to index and display the view the uploaded smiley is in
-        $this->redirect('admin/smileys?view=' . $smiley_file[0]);
-    }
-
-    /**
-     * Extends this controller with neccessary infobox
-     *
-     * @param String $view Currently viewed group
-     */
-    private function setSidebar($view)
-    {
-        $sidebar = Sidebar::Get();
-
-        // Render items
-        $factory = new Flexi_TemplateFactory($this->dispatcher->trails_root . '/views/admin/smileys/');
-
-        $actions = new ActionsWidget();
-        $actions->addLink(
-            _('Neues Smiley hochladen'),
-            $this->url_for('admin/smileys/upload', $view),
-            Icon::create('add')
-        )->asDialog('size=auto');
-        $actions->addLink(
-            _('Smileys zählen'),
-            $this->url_for('admin/smileys/count', $view),
-            Icon::create('code')
-        );
-        $actions->addLink(
-            _('Tabelle aktualisieren'),
-            $this->url_for('admin/smileys/refresh', $view),
-            Icon::create('refresh')
-        );
-        $actions->addLink(
-            _('Smiley-Übersicht öffnen'),
-            URLHelper::getLink('dispatch.php/smileys'),
-            Icon::create('smiley')
-        )->asDialog();
-        $sidebar->addWidget($actions);
-
-        $widget = new SelectWidget(
-            _('Filter'),
-            $this->url_for('admin/smileys/index'),
-            'view'
-        );
-        $group = new SelectGroupElement(_('Nach Buchstaben'));
-        foreach (Smiley::getUsedCharacters() as $character => $count) {
-            $option = new SelectElement($character, sprintf("%s (% 2u)", mb_strtoupper($character), $count));
-            $option->setActive($view == $character);
-            $group->addElement($option);
-        }
-        $widget->addElement($group);
-
-        $groups = [
-            'all'   => _('Alle'),
-            'top20' => _('Top 20'),
-            'used'  => _('Benutzte'),
-            'none'  => _('Nicht benutzte'),
-            'short' => _('Nur mit Kürzel')
-        ];
-        $group = new SelectGroupElement(_('Gruppiert'));
-        foreach ($groups as $key => $label) {
-            $option = new SelectElement($key, $label);
-            $option->setActive($view == $key);
-            $group->addElement($option);
-        }
-        $widget->addElement($group);
-        $sidebar->addWidget($widget);
-
-        $widget = new SidebarWidget();
-        $statistics = $factory->render('statistics', Smiley::getStatistics());
-        $widget->setTitle(_('Statistiken'));
-        $widget->addElement(new WidgetElement($statistics));
-        $sidebar->addWidget($widget);
-    }
-}
diff --git a/app/controllers/smileys.php b/app/controllers/smileys.php
deleted file mode 100644
index 600645dd49fa132ada42c46507771d57eeb1aab0..0000000000000000000000000000000000000000
--- a/app/controllers/smileys.php
+++ /dev/null
@@ -1,131 +0,0 @@
-<?php
-/**
- * smileys.php - controller class for the smileys
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * @author   Jan-Hendrik Willms <tleilax+studip@gmail.com>
- * @author   Tobias Thelen <tthelen@uos.de>
- * @author   Jens Schmelzer <jens.schmelzer@fh-jena.de>
- * @license  http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
- * @category Stud.IP
- * @package  smiley
- * @since    2.3
- */
-class SmileysController extends AuthenticatedController
-{
-    const GRID_WIDTH  = 5;
-    const GRID_HEIGHT = 2;
-
-    /**
-     * Common tasks for all actions.
-     */
-    public function before_filter(&$action, &$args)
-    {
-        parent::before_filter($action, $args);
-
-        PageLayout::setTitle(_('Smiley-Ãœbersicht'));
-
-        $this->favorites_activated = SmileyFavorites::isEnabled()
-                                     && $GLOBALS['user']->id != 'nobody';
-
-        if ($this->favorites_activated) {
-            $this->favorites = new SmileyFavorites($GLOBALS['user']->id);
-            $this->default   = count($this->favorites->get()) > 0
-                             ? 'favorites'
-                             : Smiley::getFirstUsedCharacter();
-        } else {
-            $this->default   = Smiley::getFirstUsedCharacter();
-        }
-    }
-
-    /**
-     * Displays (a subset of) the smileys in the system
-     *
-     * @param mixed $view Subset to display, defaults to favorites if enabled
-     */
-    public function index_action($view = null)
-    {
-        $this->view = $view ?: $this->default;
-
-        $this->characters = Smiley::getUsedCharacters();
-        $this->statistics = Smiley::getStatistics();
-
-        // Redirect to index if favorites is selected but user is not logged in
-        if (!$this->favorites_activated and $this->view == 'favorites') {
-            $this->redirect('smileys');
-        }
-
-        $title =  _('Smiley-Ãœbersicht') . ' - ' . sprintf(_('%s Smileys vorhanden'), $this->statistics['count_all']);
-        PageLayout::setTitle($title);
-
-        $this->smileys = $this->view == 'favorites'
-                       ? Smiley::getByIds($this->favorites->get())
-                       : Smiley::getGrouped($this->view);
-    }
-
-    /**
-     * Toggles whether a certain smiley is favored for the current user
-     *
-     * @param int    $id    Id of the smiley to favor/disfavor
-     * @param String $view  View to return to
-     */
-    public function favor_action($id, $view)
-    {
-        try {
-            $state = $this->favorites->toggle($id);
-
-            $message = $state
-                     ? _('Der Smiley wurde zu Ihren Favoriten hinzugefügt.')
-                     : _('Der Smiley gehört nicht mehr zu Ihren Favoriten.');
-            $msg_box = MessageBox::success($message);
-        } catch (OutOfBoundsException $e) {
-            $state = $this->favorites->contain($id);
-            $message = _('Maximale Favoritenzahl erreicht. Vielleicht sollten Sie mal ausmisten? :)');
-            $msg_box = MessageBox::error($message);
-        }
-
-        if (Request::isXhr()) {
-            $this->response->add_header('Content-Type', 'application/json');
-            $this->render_text(json_encode([
-                'state'   => $state,
-                'message' => $msg_box,
-            ]));
-        } else {
-            PageLayout::postMessage($msg_box);
-            $this->redirect('smileys/index/' . $view . '#smiley' . $id);
-        }
-    }
-
-    /**
-     * Back end for the smiley picker javascript module.
-     * Renders a list of smileys very similar to the index action but
-     * unfortunately still to different to be combined.
-     *
-     * @param mixed $view Subset to display, defaults to favorites if enabled
-     * @param int   $page Section of subset to display
-     */
-    public function picker_action($view = null, $page = 0)
-    {
-        $per_page = self::GRID_WIDTH * self::GRID_HEIGHT;
-
-        $this->view = $view ?: ($this->default === 'favorites' ? 'favorites' : 'all');
-        $smileys = $this->view == 'favorites'
-                 ? Smiley::getByIds($this->favorites->get())
-                 : Smiley::getGrouped($this->view);
-
-        $this->page       = $page;
-        $this->pages      = floor(count($smileys) / $per_page);
-
-        array_walk($smileys, function ($smiley) {
-            $smiley->link = $smiley->getURL();
-            $smiley->html = $smiley->getImageTag();
-        });
-        $this->smileys    = array_slice($smileys, $page * $per_page, $per_page);
-
-        $this->characters = Smiley::getUsedCharacters();
-    }
-}
diff --git a/app/views/admin/smileys/edit.php b/app/views/admin/smileys/edit.php
deleted file mode 100644
index ebe988307d72d581ce7647bb264a97c739dab42c..0000000000000000000000000000000000000000
--- a/app/views/admin/smileys/edit.php
+++ /dev/null
@@ -1,63 +0,0 @@
-<?php
-/**
- * @var Admin_SmileysController $controller
- * @var Smiley $smiley
- * @var string $view
- */
-use Studip\Button, Studip\LinkButton;
-?>
-
-<form action="<?= $controller->url_for('admin/smileys/edit', $smiley->id, $view) ?>"
-      method="post" enctype="multipart/form-data">
-    <?= CSRFProtection::tokenTag() ?>
-
-    <table class="default">
-        <thead class="hide-in-dialog">
-            <tr>
-                <th colspan="2"><b><?= _('Smiley bearbeiten') ?></b></th>
-            </tr>
-        </thead>
-        <tbody>
-            <tr>
-                <td><?= _('Smiley:')?></td>
-                <td align="center"><?= $smiley->getImageTag() ?></td>
-            </tr>
-            <tr>
-                <td>
-                    <label for="name"><?= _('Name')?></label>
-                </td>
-                <td>
-                    <input type="text" name="name" id="name" required pattern="[A-Za-z0-9-_]+"
-                           value="<?= Request::option('name', $smiley->name) ?>">
-                    <br>
-                    <small><?= _('Erlaubte Zeichen:') ?> a-z 0-9 &ndash; _</small>
-                </td>
-            </tr>
-            <tr>
-                <td>
-                    <label for="short"><?= _('Kürzel')?></label>
-                </td>
-                <td>
-                    <input type="text" name="short" id="short" 
-                           value="<?= Request::option('short', $smiley->short) ?>">
-                </td>
-            </tr>
-            <tr>
-                <td><?= _('Erstellt') ?></td>
-                <td><?= date('d.m.Y H:i:s', $smiley->mkdate) ?></td>
-            </tr>
-            <tr>
-                <td><?= _('Geändert') ?></td>
-                <td><?= date('d.m.Y H:i:s', $smiley->chdate) ?></td>
-            </tr>
-        </tbody>
-        <tfoot data-dialog-button>
-            <tr>
-                <td colspan="2">
-                    <?= Button::createAccept(_('Speichern'), 'edit') ?>
-                    <?= LinkButton::createCancel(_('Abbrechen'), $controller->url_for('admin/smileys?view=' . $view))?>
-                </td>
-            </tr>
-        </tfoot>
-    </table>
-</form>
diff --git a/app/views/admin/smileys/index.php b/app/views/admin/smileys/index.php
deleted file mode 100644
index 44a51f77ede5afb54d6e590c654f4ec18a67d526..0000000000000000000000000000000000000000
--- a/app/views/admin/smileys/index.php
+++ /dev/null
@@ -1,92 +0,0 @@
-<?php
-/**
- * @var Admin_SmileysController $controller
- * @var bool $favorites_enabled
- * @var string $view
- * @var Smiley[] $smileys
- */
-?>
-<form action="<?= $controller->action_link('admin/smileys/delete/bulk', $view) ?>" method="post">
-    <?= CSRFProtection::tokenTag() ?>
-
-    <table class="default">
-        <colgroup>
-            <col style="width: 20px">
-            <col>
-            <col>
-            <col style="width: 50px">
-            <col>
-            <col style="width: 50px">
-        <? if ($favorites_enabled): ?>
-            <col style="width: 50px">
-        <? endif; ?>
-            <col style="width: 50px">
-        </colgroup>
-        <thead>
-            <tr>
-                <th>&nbsp;</th>
-                <th><?= _('Smiley') ?></th>
-                <th><?= _('Smileyname') ?></th>
-                <th>&Sigma;</th>
-                <th><?= _('Kürzel') ?></th>
-                <th>&Sigma;</th>
-            <? if ($favorites_enabled): ?>
-                <th><?= _('Favoriten') ?></th>
-            <? endif; ?>
-                <th>&nbsp;</th>
-            </tr>
-        </thead>
-    <? if (empty($smileys)): ?>
-        <tbody>
-            <tr>
-                <td class="blank" colspan="<?= $favorites_enabled ? 8 : 7 ?>">
-                    <?= _('Keine Smileys vorhanden.') ?>
-                </td>
-            </tr>
-        </tbody>
-    <? else: ?>
-        <tbody>
-        <? foreach ($smileys as $smiley): ?>
-            <tr id="smiley<?= $smiley->id ?>">
-                <td><input type="checkbox" name="smiley_id[]" value="<?= $smiley->id ?>"></td>
-                <td><?= $smiley->getImageTag() ?></td>
-                <td><?= htmlReady($smiley->name) ?></td>
-                <td><?= $smiley->count ?></td>
-            <? if ($smiley->short): ?>
-                <td class="separator"><?= htmlReady($smiley->short) ?></td>
-                <td><?= $smiley->short_count ?></td>
-            <? else: ?>
-                <td class="separator" colspan="2">-</td>
-            <? endif; ?>
-            <? if ($favorites_enabled): ?>
-                <td class="separator"><?= $smiley->fav_count ?></td>
-            <? endif; ?>
-                <td align="right">
-                    <a href="<?= $controller->url_for('admin/smileys/edit', $smiley->id, $view) ?>"
-                       title="<?= htmlReady(sprintf(_('Smiley "%s" bearbeiten'), $smiley->name)) ?>"
-                       data-dialog="size=auto">
-                        <?= Icon::create('edit') ?>
-                    </a>
-                    <a href="<?= $controller->url_for('admin/smileys/delete', $smiley->id, $view) ?>"
-                       title="<?= htmlReady(sprintf(_('Smiley "%s" löschen'), $smiley->name)) ?>">
-                        <?= Icon::create('trash') ?>
-                    </a>
-                </td>
-            </tr>
-        <? endforeach; ?>
-        </tbody>
-        <tfoot>
-            <tr>
-                <td>
-                    <input class="middle" type="checkbox" data-proxyfor=":checkbox[name^=smiley_id]"
-                           data-activates="button[name=bulk-delete]"
-                           name="check_all" title="<?= _('Alle Benutzer auswählen') ?>">
-                </td>
-                <td colspan="<?= $favorites_enabled ? 7 : 6 ?>">
-                    <?= Studip\Button::createCancel(_('Markierte löschen'), 'bulk-delete') ?>
-                </td>
-            </tr>
-        </tfoot>
-    <? endif; ?>
-    </table>
-</form>
diff --git a/app/views/admin/smileys/statistics.php b/app/views/admin/smileys/statistics.php
deleted file mode 100644
index bdef01721fec03faad6b23b593d4d7feb757bcaa..0000000000000000000000000000000000000000
--- a/app/views/admin/smileys/statistics.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-/**
- * @var int $count_all
- * @var int $count_used
- * @var int $sum
- * @var int $last_change
- */
-?>
-<dl class="smiley-statistics">
-    <dt><?= _('Vorhanden') ?></dt>
-    <dd><?= $count_all ?></dd>
-    
-    <dt><?= _('Davon benutzt') ?></dt>
-    <dd><?= $count_used ?></dd>
-    
-    <dt><?= _('Smiley-Vorkommen') ?></dt>
-    <dd><?= $sum ?></dd>
-
-    <dt><?= _('Letzte Änderung') ?></dt>
-    <dd><?= (!is_null($last_change) ? date('d.m.Y H:i:s', $last_change) : '')?></dd>
-</dl>
diff --git a/app/views/admin/smileys/upload.php b/app/views/admin/smileys/upload.php
deleted file mode 100644
index c0d6c6bf722ab19a6f0422c29637890924499285..0000000000000000000000000000000000000000
--- a/app/views/admin/smileys/upload.php
+++ /dev/null
@@ -1,46 +0,0 @@
-<?php
-/**
- * @var Admin_SmileysController $controller
- * @var string $view
- */
-
-use Studip\Button, Studip\LinkButton;
-?>
-<form action="<?= $controller->url_for('admin/smileys/upload', $view) ?>"
-      method="post" enctype="multipart/form-data">
-    <?= CSRFProtection::tokenTag() ?>
-
-    <table class="default">
-        <thead class="hide-in-dialog">
-            <tr>
-                <th colspan="2"><b><?= _('Neues Smiley hochladen') ?></b></th>
-            </tr>
-        </thead>
-        <tbody>
-            <tr>
-                <td>
-                    <label for="replace"><?= _('existierende Datei überschreiben') ?></label>
-                </td>
-                <td>
-                    <input type="checkbox" id="replace" name="replace" value="1">
-                </td>
-            </tr>
-            <tr>
-                <td>
-                    <label for="file"><?= _('Bilddatei auswählen') ?></label>
-                </td>
-                <td>
-                    <input type="file" id="file" name="smiley_file" required>
-                </td>
-            </tr>
-        </tbody>
-        <tfoot data-dialog-button>
-            <tr>
-                <td colspan="2" align="center">
-                    <?= Button::createAccept(_('Hochladen'), 'upload') ?>
-                    <?= LinkButton::createCancel(_('Abbrechen'), $controller->url_for('admin/smileys?view=' . $view))?>
-                </td>
-            </tr>
-        </tfoot>
-    </table>
-</form>
diff --git a/app/views/course/forum/index/_post.php b/app/views/course/forum/index/_post.php
index 538b98d42d39d61a40423dd2876f1c45fba5e723..d21b4ef508f2edf2d4ba68876c2fb2291b7a4323 100644
--- a/app/views/course/forum/index/_post.php
+++ b/app/views/course/forum/index/_post.php
@@ -161,9 +161,6 @@
     <span data-edit-topic="<?= $post['topic_id'] ?>" <?= $edit_posting == $post['topic_id'] ? '' : 'style="display: none;"' ?>>
         <dl class="postprofile">
             <dt>
-                <? if (!Config::get()->WYSIWYG): ?>
-                    <?= $this->render_partial('course/forum/index/_smiley_favorites', ['textarea_id' => $post['topic_id']]) ?>
-                <? endif; ?>
             </dt>
         </dl>
     </span>
diff --git a/app/views/course/forum/index/_smiley_favorites.php b/app/views/course/forum/index/_smiley_favorites.php
deleted file mode 100644
index fbe48b42659fa7f3a80055209362750275adc11b..0000000000000000000000000000000000000000
--- a/app/views/course/forum/index/_smiley_favorites.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?
-$sm = new SmileyFavorites($GLOBALS['user']->id);
-?>
-<div class="smiley_favorites">
-    <a href="<?= URLHelper::getLink('dispatch.php/smileys') ?>" data-dialog>
-        <?= _('Smileys') ?>
-    </a> |
-    <a href="<?= format_help_url("Basis.VerschiedenesFormat") ?>" target="new"><?= _("Formatierungshilfen") ?></a>
-    <br>
-    <? $smileys = Smiley::getByIds($sm->get()) ?>
-    <? if (!empty($smileys)) : ?>
-        <? foreach ($smileys as $smiley) : ?>
-            <img class="js" src="<?= $smiley->getUrl() ?>" data-smiley=" :<?= $smiley->name ?>: "
-                style="cursor: pointer;" onClick="STUDIP.Forum.insertSmiley('<?= $textarea_id ?>', this)">
-        <? endforeach ?>
-    <? elseif ($GLOBALS['user']->id != 'nobody') : ?>
-        <span style="font-size: 1.2em" class="js">
-            <br>
-            <?= _('Sie haben noch keine Smiley-Favoriten.') ?><br>
-            <br>
-            <a href="<?= URLHelper::getLink('dispatch.php/smileys') ?>" data-dialog>
-                <?= _('Fügen Sie welche hinzu!') ?>
-            </a>
-        </span>
-    <? endif ?>
-    <br>
-</div>
diff --git a/app/views/smileys/index.php b/app/views/smileys/index.php
deleted file mode 100644
index 5860b953da581fa7bea11aaa9de44e2fd04bcfae..0000000000000000000000000000000000000000
--- a/app/views/smileys/index.php
+++ /dev/null
@@ -1,117 +0,0 @@
-<?php
-use Studip\Button;
-
-// divide smiley array in equal chunks, spillover from left to right
-$count     = count($smileys);
-$columns   = min(3, ceil($count / 5));
-
-$max       = $columns ? floor($count / $columns) : 0;
-$spillover = $columns ? $count % $columns : 0;
-
-$data = [];
-for ($i = 0; $i < $columns; $i++) {
-    $num = $max + (int)($spillover > 0);
-
-    $data[] = array_splice($smileys, 0, $num);
-
-    $spillover -= 1;
-}
-$data = array_filter($data);
-?>
-
-<ul class="smiley-tabs" role="navigation">
-<? if ($favorites_activated): ?>
-    <li class="favorites <? if ($view === 'favorites') echo 'current'; ?>">
-        <a href="<?= $controller->url_for('smileys/index/favorites') ?>" data-dialog>
-            <?= _('Favoriten') ?>
-        </a>
-    </li>
-<? endif; ?>
-<? if (Smiley::getShort()): ?>
-    <li <? if ($view === 'short') echo 'class="current"'; ?>>
-        <a href="<?= $controller->url_for('smileys/index/short') ?>" data-dialog>
-            <?= _('Kürzel') ?>
-        </a>
-    </li>
-<? endif; ?>
-    <li <? if ($view === 'all') echo 'class="current"'; ?>>
-        <a href="<?= $controller->url_for('smileys/index/all') ?>" data-dialog>
-            <?= _('Alle') ?>
-        </a>
-    </li>
-<? foreach (array_keys($characters) as $char): ?>
-    <li <? if ($view === $char) echo 'class="current"'; ?>>
-        <a href="<?= $controller->url_for('smileys/index', $char) ?>" data-dialog>
-            <?= mb_strtoupper($char) ?>
-        </a>
-    </li>
-<? endforeach; ?>
-</ul>
-
-<div class="clear"></div>
-
-<? if (!$count): ?>
-    <?= MessageBox::info($view === 'favorites'
-                         ? _('Keine Favoriten vorhanden.')
-                         : _('Keine Smileys vorhanden.')) ?>
-<? else: ?>
-    <table class="smiley-container">
-        <tr>
-        <? foreach ($data as $smileys): ?>
-            <td valign="top" align="center">
-
-                <table class="smiley-column default">
-                    <colgroup>
-                        <col>
-                        <col width="25%">
-                        <col width="25%">
-                    <? if ($favorites_activated): ?>
-                        <col width="32px">
-                    <? endif; ?>
-                    </colgroup>
-                    <thead>
-                        <tr>
-                            <th><?= _('Bild') ?></th>
-                            <th><?= _('Code') ?></th>
-                            <th><?= _('Kürzel') ?></th>
-                        <? if ($favorites_activated): ?>
-                            <th class="actions">
-                                <abbr title="<?= _('Favorit') ?>">
-                                    <?= Icon::create('star', 'info')->asImg() ?>
-                                </abbr>
-                            </th>
-                        <? endif; ?>
-                        </tr>
-                    </thead>
-                    <tbody>
-                    <? foreach ($smileys as $smiley): ?>
-                        <tr id="smiley<?= $smiley->id ?>">
-                            <td class="smiley-icon">
-                                <a name="smiley<?= $smiley->id ?>"></a>
-                                <?= $smiley->getImageTag() ?>
-                            </td>
-                            <td><?= sprintf(':%s:', $smiley->name) ?></td>
-                            <td><?= htmlReady($smiley->short) ?></td>
-                        <? if ($favorites_activated): ?>
-                            <td class="actions">
-                                <a href="<?= $controller->url_for('smileys/favor', $smiley->id, $view) ?>"
-                                   class="smiley-toggle <?= $favorites->contain($smiley->id) ? 'favorite' : '' ?>">
-                                <? if ($favorites->contain($smiley->id)): ?>
-                                    <?= _('Als Favorit entfernen') ?>
-                                <? else: ?>
-                                    <?= _('Als Favorit markieren') ?>
-                                <? endif; ?>
-                                </a>
-                            </td>
-                        <? endif; ?>
-                        </tr>
-                    <? endforeach; ?>
-                    </tbody>
-                </table>
-
-            </td>
-        <? endforeach; ?>
-        </tr>
-    </table>
-<? endif; ?>
-
diff --git a/app/views/smileys/picker.php b/app/views/smileys/picker.php
deleted file mode 100644
index 8093fb5c26177c9c436f1d3365211f537c845b00..0000000000000000000000000000000000000000
--- a/app/views/smileys/picker.php
+++ /dev/null
@@ -1,77 +0,0 @@
-<div class="smiley-picker">
-    <table class="navigation top">
-        <tr>
-        <? if ($favorites_activated && count($favorites->get()) > 0): ?>
-            <td>
-                <a href="<?= $controller->url_for('smileys/picker/favorites') ?>">
-                    <?= Icon::create('star', $view === 'favorites' ? 'attention' : 'clickable', ['title' => _('Favoriten')]) ?>
-                </a>
-            </td>
-        <? endif; ?>
-            <td style="text-align: right;">
-                <a href="<?= $controller->url_for('smileys/picker/all') ?>">
-                    <?= Icon::create('smiley', $view === 'all' ? 'attention' : 'clickable', ['title' => _('alle')]) ?>
-                </a>
-            </td>
-        <? for ($i = 0; $i < 26; $i++):
-               $char = chr(ord('a') + $i);
-        ?>
-            <td <? if ($view === $char) echo 'class="active"'; ?>>
-            <? if (isset($characters[$char])): ?>
-                <a href="<?= $controller->url_for('smileys/picker/'. $char) ?>">
-                    <?= mb_strtoupper($char) ?>
-                </a>
-            <? else: ?>
-                <?= $char ?>
-            <? endif; ?>
-            </td>
-        <? endfor; ?>
-        </tr>
-    </table>
-
-    <div class="smileys">
-<? foreach (array_pad($smileys, $controller::GRID_WIDTH * $controller::GRID_HEIGHT, null) as $smiley): ?>
-    <? if ($smiley === null): ?>
-        <span class="empty"></span>
-    <? else: ?>
-        <a class="smiley" href="#" data-code="<?= $smiley->short ?: (':' . $smiley->name . ':') ?>">
-            <?= $smiley->html ?>
-        </a>
-    <? endif; ?>
-<? endforeach; ?>
-    </div>
-
-    <table class="navigation bottom">
-        <tr>
-            <td>
-            <? if ($page > 0): ?>
-                <a href="<?= $controller->url_for('smileys/picker/' . $view . '/0') ?>">
-                    <?= Icon::create('arr_eol-left', 'clickable')->asImg() ?>
-                </a>
-                <a href="<?= $controller->url_for('smileys/picker/' . $view . '/' . ($page - 1)) ?>">
-                    <?= Icon::create('arr_1left', 'clickable')->asImg() ?>
-                </a>
-            <? else: ?>
-                <?= Icon::create('arr_eol-left', 'inactive')->asImg() ?>
-                <?= Icon::create('arr_1left', 'inactive')->asImg() ?>
-            <? endif; ?>
-            </td>
-            <td style="text-align: center;">
-                <?= sprintf('Seite %u von %u', $page + 1, $pages + 1) ?>
-            </td>
-            <td style="text-align: right;">
-            <? if ($page < $pages): ?>
-                <a href="<?= $controller->url_for('smileys/picker/' . $view . '/' . ($page + 1)) ?>">
-                    <?= Icon::create('arr_1right', 'clickable')->asImg() ?>
-                </a>
-                <a href="<?= $controller->url_for('smileys/picker/' . $view . '/' . $pages) ?>">
-                    <?= Icon::create('arr_eol-right', 'clickable')->asImg() ?>
-                </a>
-            <? else: ?>
-                <?= Icon::create('arr_1right', 'inactive')->asImg() ?>
-                <?= Icon::create('arr_eol-right', 'inactive')->asImg() ?>
-            <? endif; ?>
-            </td>
-        </tr>
-    </table>
-</div>
\ No newline at end of file
diff --git a/config/config.inc.php.dist b/config/config.inc.php.dist
index 099d03ba760623cdd867b6498cb9451a98e7ed81..f0d5b274299bbc519e251d7183037b1d5ac713aa 100644
--- a/config/config.inc.php.dist
+++ b/config/config.inc.php.dist
@@ -44,7 +44,6 @@ global
   $NAME_FORMAT_DESC,
   $PERS_TERMIN_KAT,
   $SCM_PRESET,
-  $SMILE_SHORT,
   $SYMBOL_SHORT,
   $TERMIN_TYP,
   $TITLE_FRONT_TEMPLATE,
@@ -252,16 +251,6 @@ $SCM_PRESET[3] = array("name"=>_("Links"));
 $SCM_PRESET[4] = array("name"=>_("Verschiedenes"));
 //you can add more presets here
 
-//Shortcuts for smileys
-$SMILE_SHORT = array( //diese Kuerzel fuegen das angegebene Smiley ein (Dateiname + ".gif")
-    ":)"=>"smile" ,
-    ":-)"=>"asmile" ,
-    ":#:"=>"zwinker" ,
-    ":("=>"frown" ,
-    ":o"=>"redface" ,
-    ":D"=>"biggrin",
-    ";-)"=>"wink");
-
 //Shortcuts for symbols
 $SYMBOL_SHORT = array(
     "=)"    => "&rArr;" ,
diff --git a/config/config_develop.inc.php b/config/config_develop.inc.php
index f2ea173f4dcedac02015183490af7c0be2aad9b0..26787a21a9c99e87c9f598e12822f1e896f5cd02 100644
--- a/config/config_develop.inc.php
+++ b/config/config_develop.inc.php
@@ -47,7 +47,6 @@ global
   $PERS_TERMIN_KAT,
   $SCM_PRESET,
   $SEM_STATUS_GROUPS,
-  $SMILE_SHORT,
   $SYMBOL_SHORT,
   $TERMIN_TYP,
   $TIME_PRESETS,
@@ -309,16 +308,6 @@ $LIT_LIST_FORMAT_TEMPLATE = "**{dc_creator}** |({dc_contributor})||\n"
                         . "{note}||\n"
                         . "[{lit_plugin_display_name}]{external_link}|\n";
 
-//Shortcuts for smileys
-$SMILE_SHORT = [ //diese Kuerzel fuegen das angegebene Smiley ein (Dateiname + ".gif")
-    ":)"=>"smile" ,
-    ":-)"=>"asmile" ,
-    ":#:"=>"zwinker" ,
-    ":("=>"frown" ,
-    ":o"=>"redface" ,
-    ":D"=>"biggrin",
-    ";-)"=>"wink"];
-
 //Shortcuts for symbols
 $SYMBOL_SHORT = [
     "=)"    => "&rArr;" ,
diff --git a/db/migrations/5.4.1_remove_smileys.php b/db/migrations/5.4.1_remove_smileys.php
new file mode 100644
index 0000000000000000000000000000000000000000..232325f2e9c9c91e8127b839b81cc557e6fb9c91
--- /dev/null
+++ b/db/migrations/5.4.1_remove_smileys.php
@@ -0,0 +1,54 @@
+<?php
+final class RemoveSmileys extends Migration
+{
+    protected function up()
+    {
+        $query = "ALTER TABLE `user_info`
+                  DROP COLUMN `smiley_favorite`";
+        DBManager::get()->exec($query);
+
+        $query = "DROP TABLE `smiley`";
+        DBManager::get()->exec($query);
+
+        $query = "DELETE `config`, `config_values`
+                  FROM `config`
+                  LEFT JOIN `config_values` USING (`field`)
+                  WHERE `field` = 'SMILEYADMIN_ENABLE'";
+        DBManager::get()->exec($query);
+    }
+
+    protected function down()
+    {
+        $query = "INSERT INTO `config` (
+                      `field`, `value`, `type`, `range`, `section`,
+                      `mkdate`, `chdate`,
+                      `description`
+                  ) VALUES (
+                      'SMILEYADMIN_ENABLE', '1', 'boolean', 'global', 'modules', 
+                      UNIX_TIMESTAMP(), UNIX_TIMESTAMP(),
+                      'Schaltet ein oder aus, ob die Administration der Smileys verfügbar ist.'
+                  )";
+        DBManager::get()->exec($query);
+
+        $query = "CREATE TABLE `smiley` (
+                    `smiley_id` INT(11) unsigned NOT NULL AUTO_INCREMENT,
+                    `smiley_name` VARCHAR(50) DEFAULT NULL,
+                    `smiley_width` INT(11) NOT NULL DEFAULT 0,
+                    `smiley_height` INT(11) NOT NULL DEFAULT 0,
+                    `short_name` VARCHAR(50) DEFAULT NULL,
+                    `smiley_counter` INT(11) UNSIGNED NOT NULL DEFAULT 0,
+                    `short_counter` INT(11) UNSIGNED NOT NULL DEFAULT 0,
+                    `fav_counter` INT(11) UNSIGNED NOT NULL DEFAULT 0,
+                    `mkdate` INT(11) UNSIGNED DEFAULT NULL,
+                    `chdate` INT(11) UNSIGNED DEFAULT NULL,
+                    PRIMARY KEY (`smiley_id`),
+                    UNIQUE KEY `name` (`smiley_name`),
+                    KEY `short` (`short_name`)
+                  )";
+        DBManager::get()->exec($query);
+
+        $query = "ALTER TABLE `user_info`
+                  ADD COLUMN `smiley_favorite` VARCHAR(255) DEFAULT NULL AFTER `email_forward`";
+        DBManager::get()->exec($query);
+    }
+}
diff --git a/lib/classes/ForumEntry.php b/lib/classes/ForumEntry.php
index 968d408c67719c9620a8aa64c3dd4884c33cd2a9..cc0e959583248ec6cee49a49be01329b30eb8fa4 100644
--- a/lib/classes/ForumEntry.php
+++ b/lib/classes/ForumEntry.php
@@ -165,26 +165,14 @@ class ForumEntry  implements PrivacyObject
 
 
     /**
-     * calls Stud.IP's kill_format and additionally removes any found smiley-tag
+     * calls Stud.IP's kill_format
      *
      * @param string $text the text to parse
-     * @return string the text without format-tags and without smileys
+     * @return string the text without format-tags
      */
     public static function killFormat($text)
     {
-        $text = kill_format($text);
-
-        // find stuff which is enclosed between to colons
-        preg_match('/' . SmileyFormat::REGEXP . '/U', $text, $matches);
-
-        // remove the match if it is a smiley
-        foreach ($matches as $match) {
-            if (Smiley::getByName($match) || Smiley::getByShort($match)) {
-                $text = str_replace($match, '', $text);
-            }
-        }
-
-        return $text;
+        return kill_format($text);
     }
 
     /**
diff --git a/lib/classes/Markup.class.php b/lib/classes/Markup.class.php
index 0f5a5c87232191957beeea5ec696da3c350a838c..31438a6e68de0084a1ab587324dce9251fb77658 100644
--- a/lib/classes/Markup.class.php
+++ b/lib/classes/Markup.class.php
@@ -184,7 +184,7 @@ class Markup
      */
     private static function markupText($markup, $text)
     {
-        return symbol(smile($markup->format($text), false));
+        return symbol($markup->format($text));
     }
 
     /**
diff --git a/lib/classes/Smiley.php b/lib/classes/Smiley.php
deleted file mode 100644
index 4bf5d83bbd3220a4c26d8c3fb218a509e8403d1d..0000000000000000000000000000000000000000
--- a/lib/classes/Smiley.php
+++ /dev/null
@@ -1,573 +0,0 @@
-<?php
-/**
- * smiley.php - model class for a smiley
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * @author      Jan-Hendrik Willms <tleilax+studip@gmail.com>
- * @category    Stud.IP
- * @package     admin
- * @since       2.3
- *
- * @uses        DBManager
- * @uses        SmileyFavorites
- * @uses        SmileyFormat
- */
-class Smiley
-{
-    const FETCH_ALL = 0;
-    const FETCH_ID  = 1;
-
-    private static $shortnames = null;
-
-    public $id          = null;
-    public $name        = '';
-    public $width       = 0;
-    public $height      = 0;
-    public $short       = '';
-    public $count       = 0;
-    public $short_count = 0;
-    public $fav_count   = 0;
-    public $mkdate      = null;
-    public $chdate      = null;
-
-    /**
-     * Returns the absolute filename of a smiley.
-     *
-     * @param  mixed  $name Smiley name, defaults to current smiley's name
-     * @return String Absolute filename
-     */
-    public static function getFilename($name)
-    {
-        return sprintf('%s/smile/%s', realpath($GLOBALS['DYNAMIC_CONTENT_PATH']), $name);
-    }
-
-    /**
-     * Returns the smiley object with the given id. If no such object is
-     * available, an empty object is returned.
-     *
-     * @param  int    $id Id of the smiley to load
-     * @return Smiley Smiley object
-     */
-    public static function getById($id)
-    {
-        $result = self::getByIds($id);
-        return reset($result) ?: new self;
-    }
-
-    /**
-     * Returns a collection smiley objects with the given ids.
-     *
-     * @param  mixed $ids Ids of the smileys to load, also accepts an atomic id
-     * @return Array Array of Smiley objects
-     */
-    public static function getByIds($ids)
-    {
-        if (empty($ids)) {
-            return [];
-        }
-        $query = "SELECT smiley_id AS id, smiley_name AS name, smiley_width AS width, smiley_height AS height, "
-               . " short_name AS short, smiley_counter AS `count`, short_counter AS short_count, "
-               . " fav_counter AS fav_count, mkdate, chdate "
-               . " FROM smiley WHERE smiley_id IN (?)";
-        $statement = DBManager::get()->prepare($query);
-        $statement->execute([$ids]);
-        return $statement->fetchAll(PDO::FETCH_CLASS, 'Smiley');
-    }
-
-    /**
-     * Returns the smiley object with the given name. If no such object is
-     * available, an empty object is returned
-     *
-     * @param  String $name Name of the smiley to load
-     * @return Smiley Smiley object
-     */
-    public static function getByName($name)
-    {
-        $query = "SELECT smiley_id AS id, smiley_name AS name, smiley_width AS width, smiley_height AS height, "
-               . " short_name AS short, smiley_counter AS `count`, short_counter AS short_count, "
-               . " fav_counter AS fav_count, mkdate, chdate "
-               . " FROM smiley WHERE smiley_name = ?";
-        $statement = DBManager::get()->prepare($query);
-        $statement->execute([$name]);
-        return $statement->fetchObject('Smiley') ?: new self();
-    }
-
-    /**
-     * Returns the smiley object with the given short notation. If no such
-     * object is available, an empty object is returned
-     *
-     * @param  String $short Short notation of the smiley to load
-     * @return Smiley Smiley object
-     */
-    public static function getByShort($short)
-    {
-        $smileys = self::getShort();
-        $name   = $smileys[$short];
-
-        return isset($name) ? self::getByName($name) : new self();
-    }
-
-    /**
-     * Removes a smiley or a collection of smileys from the database.
-     *
-     * @param  mixed  $id Id(s) to delete, accepts either an atomic id or an
-     *                    array of ids
-     */
-    public static function Remove($id)
-    {
-        if ($id) {
-            foreach (self::getByIds($id) as $smiley) {
-                unlink(self::getFilename($smiley->name));
-            }
-            DBManager::get()
-                ->prepare("DELETE FROM smiley WHERE smiley_id IN (?)")
-                ->execute([$id]);
-        }
-    }
-
-    /**
-     * Generates the neccessary sql query to load the given group's items.
-     *
-     * @param  String $group Group to load
-     * @return String SQL query to load the given group's items
-     */
-    private static function groupQuery($group)
-    {
-        $query = "SELECT smiley_id AS id, smiley_name AS name, smiley_width AS width, smiley_height AS height, "
-               . " short_name AS short, smiley_counter AS `count`, short_counter AS short_count, "
-               . " fav_counter AS fav_count, mkdate, chdate FROM smiley ";
-        switch ($group) {
-            case 'all':
-                $query .= "ORDER BY smiley_name";
-                break;
-            case 'top20':
-                $query .= "WHERE smiley_counter > 0 OR short_counter > 0 "
-                       .  "ORDER BY smiley_counter + short_counter DESC, smiley_name ASC "
-                       .  "LIMIT 20";
-                break;
-            case 'used':
-                $query .= "WHERE smiley_counter > 0 OR short_counter > 0 "
-                       .  "ORDER BY smiley_counter + short_counter DESC, smiley_name ASC";
-                break;
-            case 'none':
-                $query .= "WHERE smiley_counter=0 AND short_counter=0 ORDER BY smiley_name";
-                break;
-            case 'short':
-                $query .= "WHERE short_name != '' ORDER BY smiley_name";
-                break;
-            default:
-                $query .= sprintf("WHERE smiley_name LIKE CONCAT(%s, '%%') ORDER BY smiley_name",
-                                  DBManager::get()->quote($group));
-                break;
-        }
-        return $query;
-    }
-
-    /**
-     * Loads a given group from the database.
-     *
-     * @param  String $group Group to load, defaults to 'all'
-     * @param  int    $mode  Fetch mode
-     *                      - FETCH_ALL to return actual Smiley objects
-     *                      - FETCH_ID  to return the group's items' ids
-     * @return Array Either the objects or the ids of the group's items
-     */
-    static function getGrouped($group = 'all', $mode = self::FETCH_ALL)
-    {
-        $result = DBManager::get()
-            ->query(self::groupQuery($group))
-            ->fetchAll(PDO::FETCH_CLASS, 'Smiley');
-
-        if ($mode & self::FETCH_ID) {
-            $result = array_map(function ($item) { return $item->id; }, $result);
-        }
-        return $result;
-    }
-
-    /**
-     * Returns an ordered unique list of the first characters of all smileys.
-     *
-     * @return Array Ordered list of all first characters
-     */
-    static function getFirstUsedCharacter()
-    {
-        return DBManager::get()
-            ->query("SELECT LEFT(smiley_name, 1) FROM smiley ORDER BY smiley_name")
-            ->fetchColumn();
-    }
-
-    /**
-     * Returns an associative list of the first characters of all smileys
-     * and their according quantity.
-     *
-     * @return Array Associative list with character as key and quantity as
-     *               value
-     */
-    static function getUsedCharacters()
-    {
-        $query = "SELECT LEFT(smiley_name, 1), COUNT(smiley_name) "
-               . "FROM smiley GROUP BY LEFT(smiley_name, 1)";
-        return DBManager::get()
-            ->query($query)
-            ->fetchGrouped(PDO::FETCH_COLUMN);
-    }
-
-    /**
-     * Returns a list of all available short notations.
-     *
-     * @return Array Associative list with short notation as key and smiley
-     *               name as value
-     */
-    public static function getShort()
-    {
-        if (class_exists('DBManager') && empty($GLOBALS['SMILEY_NO_DB'])) {
-            if (self::$shortnames === null) {
-                $query = "SELECT short_name, smiley_name FROM smiley WHERE short_name != ''";
-                self::$shortnames = DBManager::get()->query($query)->fetchGrouped(PDO::FETCH_COLUMN);
-            }
-            return self::$shortnames;
-        } else { // Unit test
-            $short = (array) $GLOBALS['SMILE_SHORT'];
-        }
-
-        return $short;
-    }
-
-    /**
-     * Returns some statistics about the smiley database.
-     *
-     * @return Array 4 numbers: available, used, occurences and last change
-     */
-    public static function getStatistics()
-    {
-        $query = "SELECT COUNT(*) AS count_all, "
-               . " SUM(smiley_counter + short_counter > 0) AS count_used, "
-               . " SUM(smiley_counter + short_counter) AS `sum`, "
-               . " MAX(chdate) AS last_change "
-               . "FROM smiley";
-        return DBManager::get()
-            ->query($query)
-            ->fetch(PDO::FETCH_ASSOC);
-    }
-
-    /**
-     * Searches the database for occurences of smileys and returns a list
-     * of how often each smiley was used.
-     * If smiley favorites are activated, the list will include the number
-     * how often a smiley was favored.
-     *
-     * @return Array Associative array with smiley name as key and according
-     *               usage numbers as value
-     */
-    public static function getUsage()
-    {
-        // Tabellen, die nach Smileys durchsucht werden sollen
-        // Format: array( array (Tabelle, Feld), array (Tabelle, Feld), ... )
-        $table_data = [
-            ['datafields_entries', 'content'],
-            ['kategorien', 'content'],
-            ['message', 'message'],
-            ['news', 'body'],
-            ['scm', 'content'],
-            ['user_info', 'hobby'],
-            ['user_info', 'lebenslauf'],
-            ['user_info', 'publi'],
-            ['user_info', 'schwerp'],
-            ['wiki', 'body'],
-            ['forum_entries', 'content']
-        ];
-
-        // add tables from ForumModules to count for
-        foreach (PluginEngine::getPlugins('ForumModule') as $plugin) {
-            $table = $plugin->getEntryTableInfo();
-            $table_data[] = [$table['table'], $table['content']];
-        }
-
-        // search in all tables
-        $usage = [];
-        foreach ($table_data as $table) {
-            // only fetch entries which have some content, otherwise the while-loop will fail
-            $query = "SELECT ? AS txt FROM ? WHERE LENGTH(?) > 0"; // $table1, $table0
-            if ($table[0] == 'wiki') {  // only the actual wiki page ...
-                $sqltxt = "SELECT MAX(CONCAT(LPAD(version, 5, '0'),' ', ?)) AS txt FROM ? GROUP BY range_id, keyword";
-            }
-
-            $statement = DBManager::get()->prepare($query);
-            $statement->bindParam(1, $table[1], StudipPDO::PARAM_COLUMN);
-            $statement->bindParam(2, $table[0], StudipPDO::PARAM_COLUMN);
-            $statement->bindParam(3, $table[1], StudipPDO::PARAM_COLUMN);
-            $statement->execute([]);
-
-            // and all entrys
-            while ($txt = $statement->fetchColumn()) {
-                // extract all smileys
-                if (preg_match_all('/' . SmileyFormat::REGEXP . '/u', $txt, $matches)) {
-                    for ($k = 0; $k < count($matches[2]); $k++) {
-                        $name = $matches[2][$k];
-                        if (!isset($usage[$name])) {
-                            $usage[$name] = ['count' => 0, 'short_count' => 0, 'favorites' => 0];
-                        }
-                        $usage[$name]['count'] += 1;
-                    }
-                }
-                // and now the short-notation
-                foreach (self::getShort() as $code => $name) {
-                    $regexp = '/(\>|^|\s)' . preg_quote($code) . '(?=$|\<|\s)/u';
-                    if ($count = preg_match_all($regexp, $txt, $matches)) {
-                        if (!isset($usage[$name])) {
-                            $usage[$name] = ['count' => 0, 'short_count' => 0, 'favorites' => 0];
-                        }
-                        $usage[$name]['short_count'] += $count;
-                    }
-                }
-            }
-        }
-
-        // favorites
-        if (SmileyFavorites::isEnabled()) {
-            $favorite_usage = SmileyFavorites::getUsage();
-            foreach ($favorite_usage as $name => $count) {
-                if (!isset($usage[$name])) {
-                    $usage[$name] = ['count' => 0, 'short_count' => 0, 'favorites' => 0];
-                }
-                $usage[$name]['favorites'] = $count;
-            }
-        }
-
-        return $usage;
-    }
-
-    /**
-     * Refreshes the database with current usage numbers.
-     *
-     * @return int Number of changed objects
-     */
-    public static function updateUsage()
-    {
-        $usage = self::getUsage();
-        $smileys = self::getGrouped('all');
-        $changed = 0;
-
-        foreach ($smileys as $smiley) {
-            $updated = $usage[$smiley->name];
-            if (!isset($updated)
-                && $smiley->count + $smiley->short_count + $smiley->fav_count > 0)
-            {
-                $smiley->count       = 0;
-                $smiley->short_count = 0;
-                $smiley->fav_count   = 0;
-            } else if ($smiley->count + $smiley->short_count + $smiley->fav_count
-                       != $updated['count'] + $updated['short_count'] + $updated['favorites']) {
-                $smiley->count       = $updated['count'];
-                $smiley->short_count = $updated['short_count'];
-                $smiley->fav_count   = $updated['favorites'];
-            } else {
-                continue;
-            }
-            $smiley->store();
-            $changed++;
-        }
-
-        return $changed;
-    }
-
-    /**
-     * Synchronizes the smileys' file system or an atomic file with the
-     * database.
-     * The smiley directory is scanned for new, changed or missing files.
-     * Any difference will change the database's record.
-     *
-     * This method is also used for uploading new smileys. Provide an
-     * absolute filename of a smiley and it will either be imported into
-     * the database or the database will be adjusted to the current file's
-     * dimensions.
-     *
-     * @param mixed $smiley_file If no filename is provided, the whole file
-     *                           system is refreshed
-     * @return Array Numbers: inserted, updated, removed (, favorites adjusted)
-     */
-    public static function refresh($smiley_file = null)
-    {
-        $counts = [
-            'insert'    => 0,
-            'update'    => 0
-        ];
-
-        if ($smiley_file === null) {
-            $files = glob(self::getFilename('*'));
-        } else {
-            $files = [$smiley_file];
-        }
-
-        foreach ($files as $file) {
-            $image_info = getimagesize($file);
-            if ($image_info[2] !== IMAGETYPE_GIF) {
-                continue;
-            }
-
-            $name = mb_substr(basename($file), 0, mb_strrpos(basename($file), "."));
-            //$name = basename($file, '.gif');
-            $smiley = Smiley::getByName($name);
-
-            $update = false;
-            if (!$smiley->id) {
-                $smiley->name  = $name;
-                $smiley->short = array_search($name, $GLOBALS['SMILE_SHORT']) ?: '';
-                $smiley->width  = $image_info[0];
-                $smiley->height = $image_info[1];
-
-                $update = true;
-                $counts['insert'] += 1;
-            } else if ($smiley->width + $smiley->height != $image_info[0] + $image_info[1]) {
-                $smiley->width  = $image_info[0];
-                $smiley->height = $image_info[1];
-
-                $update = true;
-                $counts['update'] += 1;
-            }
-
-            //$smiley->width || $smiley->width = 20;
-            //$smiley->height || $smiley->height = 20;
-
-            if ($update) {
-                $smiley->store();
-            }
-
-            $ids[] = $smiley->id;
-        }
-
-        $db_ids = self::getGrouped('all', self::FETCH_ID);
-        $missing = array_diff($db_ids, $ids);
-        self::Remove($missing);
-        $counts['delete'] = count($missing);
-
-        if (SmileyFavorites::isEnabled()) {
-            $counts['favorites'] = SmileyFavorites::gc();
-        }
-
-        return $counts;
-    }
-
-    /**
-     * Returns the url of a smiley.
-     *
-     * @param  mixed  $name Smiley name, defaults to current smiley's name
-     * @return String URL
-     */
-    public function getURL($name = null)
-    {
-        return sprintf('%s/smile/%s.gif', $GLOBALS['DYNAMIC_CONTENT_URL'], urlencode($name ?: $this->name));
-    }
-
-    /**
-     * Returns the HTML image tag of the smiley
-     *
-     * @param  mixed  $tooltip Tooltip to display for this smiley, defaults to
-     *                         smiley's name
-     * @return String HTML image tag
-     * @see    Smiley::img
-     */
-    public function getImageTag($tooltip = null)
-    {
-        return $this->img($this->name, $tooltip, $this->width, $this->height);
-    }
-
-    /**
-     * Returns the HTML image tag of any smiley.
-     *
-     * @param  String $name    Name of the smiley
-     * @param  mixed  $tooltip Tooltip to display for this smiley, defaults to
-     *                         smiley's name
-     * @param  mixed  $width   Width of the smiley
-     * @param  mixed  $height  Height of the smiley
-     * @return String HTML image tag
-     */
-    public function img($name, $tooltip = null, $width = null, $height = null)
-    {
-        return sprintf(
-            '<img src="%s" alt="%s" title="%s" width="%s" height="%s">',
-            $this->getURL(),
-            htmlReady($name),
-            htmlReady($tooltip ?: $name),
-            $width,
-            $height
-        );
-    }
-
-    /**
-     * Stores the current smiley to database.
-     */
-    public function store()
-    {
-        $query = "INSERT INTO smiley (
-                    smiley_id, smiley_name, smiley_width, smiley_height, short_name,
-                    smiley_counter, short_counter, fav_counter, mkdate, chdate
-                  ) VALUES (
-                    ?, ?, ?, ?, ?, ?, ?, ?, UNIX_TIMESTAMP(), UNIX_TIMESTAMP()
-                  )
-                  ON DUPLICATE KEY
-                    UPDATE smiley_name = VALUES(smiley_name),
-                           smiley_width = VALUES(smiley_width),
-                           smiley_height = VALUES(smiley_height),
-                           short_name = VALUES(short_name),
-                           smiley_counter = VALUES(smiley_counter),
-                           short_counter = VALUES(short_counter),
-                           fav_counter = VALUES(fav_counter),
-                           chdate = VALUES(chdate)";
-        DBManager::get()
-            ->prepare($query)
-            ->execute([
-               $this->id, $this->name, $this->width, $this->height, $this->short,
-               $this->count, $this->short_count, $this->fav_count
-            ]);
-        if (!$this->id) {
-            $this->id = DBManager::get()->lastInsertId();
-        }
-    }
-
-    /**
-     * Renames the smiley to the given new name.
-     *
-     * @param String $new_name New name of the smiley
-     * @return bool  true if smiley was renamed successfully, false otherwise
-     */
-    public function rename($new_name)
-    {
-        $old_file = self::getFilename($this->name);
-        $new_file = self::getFilename($new_name);
-
-        if (!rename($old_file, $new_file)) {
-            return false;
-        }
-
-        $this->name = $new_name;
-        $this->store();
-
-        return true;
-    }
-
-    /**
-     * Deletes the smiley.
-     */
-    public function delete()
-    {
-        if ($this->id) {
-            self::Remove($this->id);
-
-            $this->id          = null;
-            $this->name        = '';
-            $this->width       = 0;
-            $this->height      = 0;
-            $this->short       = '';
-            $this->count       = 0;
-            $this->short_count = 0;
-            $this->fav_count   = 0;
-            $this->mkdate      = null;
-            $this->chdate      = null;
-        }
-    }
-}
diff --git a/lib/classes/SmileyFavorites.php b/lib/classes/SmileyFavorites.php
deleted file mode 100644
index 7caf3903040c199080d39004f3840cbb9c83c0a3..0000000000000000000000000000000000000000
--- a/lib/classes/SmileyFavorites.php
+++ /dev/null
@@ -1,177 +0,0 @@
-<?php
-/**
- * SmileyFavorites
- *
- * This model provides access to the favored smileys of an user.
- *
- * @author      Jan-Hendrik Willms <tleilax+studip@gmail.com>
- * @category    Stud.IP
- * @package     smiley
- * @since       2.3
- *
- * @uses        DBManager
- * @uses        Smiley
- */
-class SmileyFavorites
-{
-    /**
-     * Returns whether the ability to favor smiley is enabled.
-     *
-     * @return bool
-     */
-    public static function isEnabled()
-    {
-        $state = null;
-        if ($state === null) {
-            $state = DBManager::get()
-                ->query("SHOW COLUMNS FROM user_info LIKE 'smiley_favorite%'")
-                ->fetchColumn();
-        }
-        return $state;
-    }
-
-    /**
-     * Returns a list of how often a smiley has been favored.
-     *
-     * @return Array Associative array with smiley name as key and according
-     *               favored numbers as value
-     */
-    public static function getUsage()
-    {
-        $usage = [];
-
-        $query = "SELECT user_id, smiley_favorite FROM user_info WHERE smiley_favorite != ''";
-        $statement = DBManager::get()->prepare($query);
-        $statement->execute([]);
-        $temp = $statement->fetchGrouped(PDO::FETCH_COLUMN);
-
-        foreach ($temp as $user_id => $favorite_string) {
-            $favorites = explode(',', $favorite_string);
-            $smileys = Smiley::getByIds($favorites);
-            foreach ($smileys as $smiley) {
-                if (!isset($usage[$smiley->name])) {
-                    $usage[$smiley->name] = 0;
-                }
-                $usage[$smiley->name] += 1;
-
-            }
-        }
-
-        return $usage;
-    }
-
-    /**
-     * Garbage collector. Removes all smiley ids from the users' favorites
-     * that are no longer in the database.
-     *
-     * @return int Number of changed records
-     */
-    public static function gc()
-    {
-        $smileys = Smiley::getGrouped('all', Smiley::FETCH_ID);
-
-        $query = "SELECT user_id, smiley_favorite FROM user_info WHERE smiley_favorite != ''";
-        $statement = DBManager::get()->prepare($query);
-        $statement->execute([]);
-        $temp = $statement->fetchGrouped(PDO::FETCH_COLUMN);
-
-        $changed = 0;
-        foreach ($temp as $user_id => $favorite_string) {
-            $old_favorites = explode(',', $favorite_string);
-            $new_favorites = array_intersect($smileys, $old_favorites);
-            if (count($old_favorites) > count($new_favorites)) {
-                $favorites = new self($user_id);
-                $favorites->set($new_favorites);
-                $changed += 1;
-            }
-        }
-
-        return $changed;
-    }
-
-    private $user_id;
-    private $favorites = [];
-
-    /**
-     * Initializes an user's favorites
-     *
-     * @param String $user_id Id of the user
-     */
-    public function __construct($user_id)
-    {
-        $this->user_id = $user_id;
-
-        $query = "SELECT smiley_favorite FROM user_info WHERE user_id = ?";
-        $statement = DBManager::get()->prepare($query);
-        $statement->execute([$this->user_id]);
-        $favorite_string = $statement->fetchColumn() ?: '';
-        $this->favorites = explode(',', $favorite_string);
-        $this->favorites = array_filter($this->favorites);
-    }
-
-    /**
-     * Returns the user's favored smileys' ids.
-     *
-     * @return Array Ids of the smileys the user has vaored
-     */
-    public function get()
-    {
-        return $this->favorites;
-    }
-
-    /**
-     * Updates the user's favored smileys.
-     *
-     * @param Array $favorites Ids of the user's favored smileys
-     */
-    public function set($favorites = [])
-    {
-        $favorite_string = implode(',', $favorites);
-        if (mb_strlen($favorite_string) > 255) {
-            throw new OutOfBoundsException;
-        }
-
-        DBManager::get()
-            ->prepare("UPDATE user_info SET smiley_favorite = ? WHERE user_id = ?")
-            ->execute([$favorite_string, $this->user_id]);
-
-        $this->favorites = $favorites;
-    }
-
-    /**
-     * Returns whether the smiley with the given id is favored by the user.
-     *
-     * @param  int  $smiley_id Id of the smiley
-     * @return bool True if the smiley is favored by the user, false otherwise
-     */
-    public function contain($smiley_id)
-    {
-        return in_array($smiley_id, $this->favorites);
-    }
-
-    /**
-     * Toggles whether a smiley is favored by the user. You can either provide
-     * an acutal state or omit the state to toggle the current state.
-     *
-     * @param  int   $smiley_id  Id of the smiley to favor/disfavor
-     * @param  mixed $favorite   Either a boolean state or null to toggle current state
-     * @return bool  True if the smiley is favored by the user, false otherwise
-     */
-    public function toggle($smiley_id, $favorite = null)
-    {
-        if ($favorite === null) {
-            $favorite = !$this->contain($smiley_id);
-        }
-        $favorites = $this->favorites;
-
-        if ($favorite) {
-            $favorites[] = $smiley_id;
-        } else {
-            $favorites = array_diff($favorites, [$smiley_id]);
-        }
-        $this->set($favorites);
-
-        return $this->contain($smiley_id);
-    }
-
-    }
diff --git a/lib/classes/SmileyFormat.php b/lib/classes/SmileyFormat.php
deleted file mode 100644
index 21c13603c4cd7342dc1dd0ae069d3cb237fb8aee..0000000000000000000000000000000000000000
--- a/lib/classes/SmileyFormat.php
+++ /dev/null
@@ -1,57 +0,0 @@
-<?php
-/**
- * SmileyFormat.php
- *
- * Provides a formatting object for smileys.
- *
- * @author   Jan-Hendrik Willms <tleilax+studip@gmail.com>
- * @category Stud.IP
- * @package  smiley
- * @since    2.3
- * @uses     Smiley
- */
-class SmileyFormat extends TextFormat
-{
-    const REGEXP = '(\>|^|\s):([_a-zA-Z][_a-z0-9A-Z-]*):(?=$|\<|\s)';
-
-    public function __construct()
-    {
-        $rules = [];
-
-        // Smiley rule
-        $rules['smileys'] = [
-            'start'    => self::REGEXP,
-            'callback' => 'SmileyFormat::smiley'
-        ];
-
-        // Smiley short notation rule
-        $needles = array_keys(Smiley::getShort());
-        $needles = array_map('preg_quote', $needles);
-        $rules['smileys_short'] = [
-            'start'    => '(>|^|\s)(' . implode('|', $needles) . ')(?=$|<|\s)',
-            'callback' => 'SmileyFormat::short'
-        ];
-
-        parent::__construct($rules);
-    }
-
-    /**
-     * Smiley notation defined by name (:name:)
-     */
-    public static function smiley($markup, $matches)
-    {
-        return $matches[1] . Smiley::getByName($matches[2])->getImageTag();
-    }
-
-    /**
-     * Smiley short notation as defined in database
-     */
-    public static function short($markup, $matches)
-    {
-        $smileys = Smiley::getShort();
-        $name    = $smileys[$matches[2]] ?? '';
-        return $name
-            ? $matches[1] . Smiley::getByName($name)->getImageTag()
-            : $matches[0];
-    }
-}
diff --git a/lib/classes/UserManagement.class.php b/lib/classes/UserManagement.class.php
index 516c9040a3ae2d222909c741c47e2f50aa4dcddc..064952b2e7abb20c27b676af09aa58c7b7ce35c1 100644
--- a/lib/classes/UserManagement.class.php
+++ b/lib/classes/UserManagement.class.php
@@ -1203,7 +1203,7 @@ class UserManagement
             "UPDATE forum_entries SET author = '' WHERE user_id = ?",
             "UPDATE auth_user_md5 SET visible = 'never' WHERE user_id = ?",
 
-            "REPLACE INTO `user_info` (`user_id`, `hobby`, `lebenslauf`, `publi`, `schwerp`, `Home`, `privatnr`, `privatcell`, `privadr`, `score`, `geschlecht`, `mkdate`, `chdate`, `title_front`, `title_rear`, `preferred_language`, `smsforward_copy`, `smsforward_rec`, `email_forward`, `smiley_favorite`, `motto`, `lock_rule`) VALUES(?, '', '', '', '', '', '', '', '', 0, 0, 0, 0, '', '', NULL, 1, '', 0, '', '', '');"
+            "REPLACE INTO `user_info` (`user_id`, `hobby`, `lebenslauf`, `publi`, `schwerp`, `Home`, `privatnr`, `privatcell`, `privadr`, `score`, `geschlecht`, `mkdate`, `chdate`, `title_front`, `title_rear`, `preferred_language`, `smsforward_copy`, `smsforward_rec`, `email_forward`, `motto`, `lock_rule`) VALUES(?, '', '', '', '', '', '', '', '', 0, 0, 0, 0, '', '', NULL, 1, '', 0, '', '');"
         ];
         foreach ($queries as $query) {
             DBManager::get()->execute($query, [$user_id]);
diff --git a/lib/models/User.class.php b/lib/models/User.class.php
index 0653f5ce7e9a14c5674244185be34c5aa807250a..98abd45caef46338dfa631c5faeffc5f396d78f4 100644
--- a/lib/models/User.class.php
+++ b/lib/models/User.class.php
@@ -55,7 +55,6 @@
  * @property string smsforward_rec computed column read/write
  * @property string guestbook computed column read/write
  * @property string email_forward computed column read/write
- * @property string smiley_favorite computed column read/write
  * @property string motto computed column read/write
  * @property string lock_rule computed column read/write
  * @property SimpleORMapCollection course_memberships has_many CourseMember
@@ -1426,7 +1425,7 @@ class User extends AuthUserMd5 implements Range, PrivacyObject
                 $storage->addTabularData(_('Kerndaten'), 'auth_user_md5', $field_data);
             }
 
-            $limit = 'user_id hobby lebenslauf publi schwerp home privatnr privatcell privadr score geschlecht mkdate chdate title_front title_rear preferred_language smsforward_copy smsforward_rec email_forward smiley_favorite motto lock_rule';
+            $limit = 'user_id hobby lebenslauf publi schwerp home privatnr privatcell privadr score geschlecht mkdate chdate title_front title_rear preferred_language smsforward_copy smsforward_rec email_forward motto lock_rule';
             $field_data = [];
             foreach ($sorm as $row) {
                 $field_data[] = $row->toRawArray($limit);
diff --git a/lib/models/UserInfo.class.php b/lib/models/UserInfo.class.php
index 3bf1813df642cb68a0884c269711a5e8ef67bef0..403e70b69ee2ccbe3bba08a4e3b0953d369e43e3 100644
--- a/lib/models/UserInfo.class.php
+++ b/lib/models/UserInfo.class.php
@@ -34,7 +34,6 @@
  * @property string smsforward_rec database column
  * @property string guestbook database column
  * @property string email_forward database column
- * @property string smiley_favorite database column
  * @property string motto database column
  * @property string lock_rule database column
  */
diff --git a/lib/modules/Blubber.class.php b/lib/modules/Blubber.class.php
index d2012b622affe8a69c84179352446b69ba2907cf..7b1dffec66aafa1771d389fd39ceef2043c2169b 100644
--- a/lib/modules/Blubber.class.php
+++ b/lib/modules/Blubber.class.php
@@ -118,8 +118,8 @@ class Blubber extends CorePlugin implements StudipModule
     {
         return [
             'summary' => _('Schneller und einfacher Austausch von Informationen in Gesprächsform'),
-            'description' => _('Blubber ist eine Kommunikationsform mit Ähnlichkeiten zu einem Forum, in dem aber in Echtzeit miteinander kommuniziert werden kann und das durch den etwas informelleren Charakter eher einem Chat anmutet. Anders als im Forum ist es nicht notwendig, die Seiten neu zu laden, um die neuesten Einträge (z. B. Antworten auf eigene Postings) sehen zu können: Die Seite aktualisiert sich selbst bei neuen Einträgen. Dateien (z.B. Fotos, Audiodateien, Links) können per Drag and Drop in das Feld gezogen und somit verlinkt werden. Auch Textformatierungen und das Verwenden von Smileys sind möglich.'),
-            'descriptionlong' => _('Kommunikationsform mit Ähnlichkeiten zu einem Forum. Im Gegensatz zum Forum kann mit Blubber jedoch in Echtzeit miteinander kommuniziert werden. Das Tool ähnelt durch den etwas informelleren Charakter einem Messenger. Anders als im Forum ist es nicht notwendig, die Seiten neu zu laden, um die neuesten Einträge (z. B. Antworten auf eigene Postings) sehen zu können. Dateien (z. B. Fotos, Audiodateien, Links) können per drag and drop in das Feld gezogen und somit verlinkt werden. Auch Textformatierungen und das Verwenden von Smileys sind möglich.'),
+            'description' => _('Blubber ist eine Kommunikationsform mit Ähnlichkeiten zu einem Forum, in dem aber in Echtzeit miteinander kommuniziert werden kann und das durch den etwas informelleren Charakter eher einem Chat anmutet. Anders als im Forum ist es nicht notwendig, die Seiten neu zu laden, um die neuesten Einträge (z. B. Antworten auf eigene Postings) sehen zu können: Die Seite aktualisiert sich selbst bei neuen Einträgen. Dateien (z.B. Fotos, Audiodateien, Links) können per Drag and Drop in das Feld gezogen und somit verlinkt werden. Auch Textformatierungen sind möglich.'),
+            'descriptionlong' => _('Kommunikationsform mit Ähnlichkeiten zu einem Forum. Im Gegensatz zum Forum kann mit Blubber jedoch in Echtzeit miteinander kommuniziert werden. Das Tool ähnelt durch den etwas informelleren Charakter einem Messenger. Anders als im Forum ist es nicht notwendig, die Seiten neu zu laden, um die neuesten Einträge (z. B. Antworten auf eigene Postings) sehen zu können. Dateien (z. B. Fotos, Audiodateien, Links) können per drag and drop in das Feld gezogen und somit verlinkt werden. Auch Textformatierungen sind möglich.'),
             'category' => _('Kommunikation und Zusammenarbeit'),
             'keywords' => _('Einfach Text schreiben und mit <Enter> abschicken; Direktes Kontaktieren anderer Stud.IP-NutzerInnen (@Vorname Nachname); Setzen von und Suche nach Stichworten über Hashtags (#Stichwort); Einbinden von Dateien per drag and drop'),
             'icon' => Icon::create('blubber', Icon::ROLE_INFO),
diff --git a/lib/navigation/AdminNavigation.php b/lib/navigation/AdminNavigation.php
index de3481b331de93abd2138351b564e1bba6e55bd3..1b28e2423f802431e2a6532ae813e1a57154be9c 100644
--- a/lib/navigation/AdminNavigation.php
+++ b/lib/navigation/AdminNavigation.php
@@ -178,10 +178,6 @@ class AdminNavigation extends Navigation
                 new Navigation(_('Anlegeassistent'), 'dispatch.php/admin/coursewizardsteps'));
             $navigation->addSubNavigation('studygroup', new Navigation(_('Studiengruppen'), 'dispatch.php/course/studygroup/globalmodules'));
 
-            if (Config::get()->SMILEYADMIN_ENABLE) {
-                $navigation->addSubNavigation('smileys', new Navigation(_('Smileys'), 'dispatch.php/admin/smileys'));
-            }
-
             if (Config::get()->TOURS_ENABLE) {
                 $navigation->addSubNavigation('tour', new Navigation(_('Touren'), 'dispatch.php/tour/admin_overview'));
             }
diff --git a/lib/visual.inc.php b/lib/visual.inc.php
index a4bb96eb070ba0cc41172ae4d01873d097853839..8503a5c7f794aea5bb9546267d8cdbf67d0ce94d 100644
--- a/lib/visual.inc.php
+++ b/lib/visual.inc.php
@@ -252,7 +252,6 @@ function kill_format ($text) {
                     //"'\[.+?\](((http\://|https\://|ftp\://)?([^/\s]+)(.[^/\s]+){2,})|([-a-z0-9_]+(\.[_a-z0-9-]+)*@([a-z0-9-]+(\.[a-z0-9-]+)+)))'i",
                     "'\[(.+?)\](((http\://|https\://|ftp\://)?([^/\s]+)(\.[^/\s]+){2,}(/[^\s]*)?)|([-a-z0-9_]+(\.[_a-z0-9-]+)*@([a-z0-9-]+(\.[a-z0-9-]+)+)))'i",
             //      "'\[quote=.+?quote\]'is",    // quoting
-                    "'(\s):[^\s]+?:(\s)'s"              // smileys
 
                     ];
     $replace = [
@@ -358,25 +357,26 @@ function idna_link($link, $mail = false) {
  * @access public
  * @param  string $text The text to convert
  * @return string Converted text
+ * @deprecated and useless since Stud.IP 5.4
  */
 function smile($text = '') {
-    $markup = new SmileyFormat();
-    return $markup->format($text);
+    trigger_error('Smileys are no longer supported.', E_USER_DEPRECATED);
+    return $text;
 }
 
 
 /**
-* create symbols from the shorts
-*
-* This functions converts the short, locatet in the config.inc
-* into the assigned pictures. It uses a different directory
-* as the smile-function, becauso symbols should not be shown in
-* the smiley and so, no link is given onto the picture. A tooltip which
-* shows the symbol code is given, too.
-*
-* @access   public
-* @param        string  the text to convert
-* @return       string  convertet text
+ * create symbols from the shorts
+ *
+ * This functions converts the short, locatet in the config.inc
+ * into the assigned pictures. A tooltip which shows the symbol
+ * code is given, too.
+ *
+ * @access   public
+ *
+ * @param        string  the text to convert
+ *
+ * @return       string  convertet text
 */
 function symbol ($text = '')
 {
diff --git a/public/eval_summary_export.php b/public/eval_summary_export.php
index f90ddd20e9938866292a9b42efeb997d563ccd91..608da257b2954886cd40a38e8d6148fe3a521d78 100644
--- a/public/eval_summary_export.php
+++ b/public/eval_summary_export.php
@@ -176,7 +176,7 @@ function freetype_answers ($parent_id, $anz_nutzer) {
     while ($answer = $statement->fetchColumn()) {
         $counter++;
         fputs($fo_file,"                <fo:table-row>\n");
-        fputs($fo_file,"                  <fo:table-cell ><fo:block linefeed-treatment=\"preserve\" font-size=\"8pt\">".$counter.". ".preg_replace($pattern,$replace,smile(xml_escape($answer)))."</fo:block></fo:table-cell>\n");
+        fputs($fo_file,"                  <fo:table-cell ><fo:block linefeed-treatment=\"preserve\" font-size=\"8pt\">".$counter.". ".preg_replace($pattern,$replace,xml_escape($answer))."</fo:block></fo:table-cell>\n");
         fputs($fo_file,"                </fo:table-row>\n");
     }
     fputs($fo_file,"                <fo:table-row>\n");
diff --git a/public/pictures/smile/Drink.gif b/public/pictures/smile/Drink.gif
deleted file mode 100644
index dbfa2e233c36ce25f255ffded7798a32f6f070db..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/Drink.gif and /dev/null differ
diff --git a/public/pictures/smile/PIMP.gif b/public/pictures/smile/PIMP.gif
deleted file mode 100644
index f424ccf8d50918b8ccf363d8d72a50225dfbcbb9..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/PIMP.gif and /dev/null differ
diff --git a/public/pictures/smile/aeh.gif b/public/pictures/smile/aeh.gif
deleted file mode 100644
index cb2bfdb284c5859680b4ff960e29bfc723239b17..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/aeh.gif and /dev/null differ
diff --git a/public/pictures/smile/aetsch.gif b/public/pictures/smile/aetsch.gif
deleted file mode 100644
index f193a595491eae148bfdd697a5aff1a5f7881b55..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/aetsch.gif and /dev/null differ
diff --git a/public/pictures/smile/all.gif b/public/pictures/smile/all.gif
deleted file mode 100644
index e370a78bd1a54ac0d287db9cde8eeeef6829f64e..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/all.gif and /dev/null differ
diff --git a/public/pictures/smile/angry.gif b/public/pictures/smile/angry.gif
deleted file mode 100644
index 5bc6a7c16b5d0155cc9d027615e4a147afe76b4b..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/angry.gif and /dev/null differ
diff --git a/public/pictures/smile/apple.gif b/public/pictures/smile/apple.gif
deleted file mode 100644
index 937119ea376ac02b899a5b74a77bbc05f0b97eeb..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/apple.gif and /dev/null differ
diff --git a/public/pictures/smile/argue.gif b/public/pictures/smile/argue.gif
deleted file mode 100644
index 8240e35a58a3e2e3497e9f36c4864fe1fe950149..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/argue.gif and /dev/null differ
diff --git a/public/pictures/smile/arrow.gif b/public/pictures/smile/arrow.gif
deleted file mode 100644
index 9f7976c615605ef142ef066904889f5087a6b6e0..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/arrow.gif and /dev/null differ
diff --git a/public/pictures/smile/asmile.gif b/public/pictures/smile/asmile.gif
deleted file mode 100644
index 83b4eaa7ca15ff5717354c780b4015c5410ef134..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/asmile.gif and /dev/null differ
diff --git a/public/pictures/smile/ass.gif b/public/pictures/smile/ass.gif
deleted file mode 100644
index 64b62725cbb24a07f0569b194bbe8c69c4a15921..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/ass.gif and /dev/null differ
diff --git a/public/pictures/smile/asthanos.gif b/public/pictures/smile/asthanos.gif
deleted file mode 100644
index 65fcf407e6e12c040fea387bf46ef1ef7f6dd252..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/asthanos.gif and /dev/null differ
diff --git a/public/pictures/smile/aysmile.gif b/public/pictures/smile/aysmile.gif
deleted file mode 100644
index 3be069495a26360135fef6c448842fd10dc36829..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/aysmile.gif and /dev/null differ
diff --git a/public/pictures/smile/azzangel.gif b/public/pictures/smile/azzangel.gif
deleted file mode 100644
index 302172fc943fb180e9c6b95ee579f995b3c26432..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/azzangel.gif and /dev/null differ
diff --git a/public/pictures/smile/bang.gif b/public/pictures/smile/bang.gif
deleted file mode 100644
index 24cd8fb4f4aef812e6388321014b3ed18eb5e110..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/bang.gif and /dev/null differ
diff --git a/public/pictures/smile/banned.gif b/public/pictures/smile/banned.gif
deleted file mode 100644
index 0362818e5c4b3ffcd730cb728739cbf3de01eb24..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/banned.gif and /dev/null differ
diff --git a/public/pictures/smile/bath.gif b/public/pictures/smile/bath.gif
deleted file mode 100644
index be9a52e36d560b75f1854d6e12e7105640692857..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/bath.gif and /dev/null differ
diff --git a/public/pictures/smile/beerdrink.gif b/public/pictures/smile/beerdrink.gif
deleted file mode 100644
index 95c06fb215e45e316ae6d91c79ffe6d59b74cfd6..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/beerdrink.gif and /dev/null differ
diff --git a/public/pictures/smile/behead.gif b/public/pictures/smile/behead.gif
deleted file mode 100644
index eec14acd0d6821c2ff865aab5325bfd705f9a6b0..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/behead.gif and /dev/null differ
diff --git a/public/pictures/smile/bgbounce.gif b/public/pictures/smile/bgbounce.gif
deleted file mode 100644
index b0d24b80034e4b4f7ea555bc70307ba8784b9ebc..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/bgbounce.gif and /dev/null differ
diff --git a/public/pictures/smile/biggrin.gif b/public/pictures/smile/biggrin.gif
deleted file mode 100644
index 5a30d9aa07f7148ed258da6eae618633e8723c07..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/biggrin.gif and /dev/null differ
diff --git a/public/pictures/smile/biglaugh.gif b/public/pictures/smile/biglaugh.gif
deleted file mode 100644
index 72fd61ad535df558e686a65c341711620d2754b6..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/biglaugh.gif and /dev/null differ
diff --git a/public/pictures/smile/birth.gif b/public/pictures/smile/birth.gif
deleted file mode 100644
index 7a1fd812d9523090e8c18aa843b619f3be0bdd2c..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/birth.gif and /dev/null differ
diff --git a/public/pictures/smile/blank.gif b/public/pictures/smile/blank.gif
deleted file mode 100644
index f9d6df73c4aa362d3bfd2dba63a3a77ecddf354e..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/blank.gif and /dev/null differ
diff --git a/public/pictures/smile/blue.gif b/public/pictures/smile/blue.gif
deleted file mode 100644
index 40078cf0a20be7e827937a9944adef23184c5454..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/blue.gif and /dev/null differ
diff --git a/public/pictures/smile/bluegrab.gif b/public/pictures/smile/bluegrab.gif
deleted file mode 100644
index 11bb30714d7b28660108e19bf5d8780939fd84db..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/bluegrab.gif and /dev/null differ
diff --git a/public/pictures/smile/bm2.gif b/public/pictures/smile/bm2.gif
deleted file mode 100644
index 6831878335e661f522a3560884a4f0b77b802b6f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/bm2.gif and /dev/null differ
diff --git a/public/pictures/smile/bobybuild.gif b/public/pictures/smile/bobybuild.gif
deleted file mode 100644
index 3e659f0f67291bf37702efc525889f50a5188ec9..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/bobybuild.gif and /dev/null differ
diff --git a/public/pictures/smile/borg.gif b/public/pictures/smile/borg.gif
deleted file mode 100644
index 01fe0ff68218d66d1944ae09a49dcad56dff5eac..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/borg.gif and /dev/null differ
diff --git a/public/pictures/smile/bounce.gif b/public/pictures/smile/bounce.gif
deleted file mode 100644
index b60ebb17c29ba98436dc850cce40248aa74ccb80..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/bounce.gif and /dev/null differ
diff --git a/public/pictures/smile/burn.gif b/public/pictures/smile/burn.gif
deleted file mode 100644
index ea20f8563949c9b5777eda7903563cd02a50b695..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/burn.gif and /dev/null differ
diff --git a/public/pictures/smile/burnout.gif b/public/pictures/smile/burnout.gif
deleted file mode 100644
index 182cf85fa8871a93f036bd0a66f6dd2c5ab51de8..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/burnout.gif and /dev/null differ
diff --git a/public/pictures/smile/capuccino.gif b/public/pictures/smile/capuccino.gif
deleted file mode 100644
index 1e0f654617f69cb7bbfeb42d4ebe4fb69b2f32d2..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/capuccino.gif and /dev/null differ
diff --git a/public/pictures/smile/cartman.gif b/public/pictures/smile/cartman.gif
deleted file mode 100644
index e2f07fb3f3b116a8ec941a209450a43a64bc7d61..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/cartman.gif and /dev/null differ
diff --git a/public/pictures/smile/cat.gif b/public/pictures/smile/cat.gif
deleted file mode 100644
index 8e2a755f21782157aea42e60806aa2a0a8661883..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/cat.gif and /dev/null differ
diff --git a/public/pictures/smile/chainsaw.gif b/public/pictures/smile/chainsaw.gif
deleted file mode 100644
index 370e1c518a003595aa3f3286ba81a9e667d0b8a6..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/chainsaw.gif and /dev/null differ
diff --git a/public/pictures/smile/chatter.gif b/public/pictures/smile/chatter.gif
deleted file mode 100644
index 65d5cb4815963da7f5c3eb9f8021c0c07a710ad2..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/chatter.gif and /dev/null differ
diff --git a/public/pictures/smile/clown.gif b/public/pictures/smile/clown.gif
deleted file mode 100644
index 06672aba5a4412b6c010b279971b9be38c0a2738..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/clown.gif and /dev/null differ
diff --git a/public/pictures/smile/compress.gif b/public/pictures/smile/compress.gif
deleted file mode 100644
index ceb3e039df6aaa826fde59b856dbff8591c61150..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/compress.gif and /dev/null differ
diff --git a/public/pictures/smile/condom.gif b/public/pictures/smile/condom.gif
deleted file mode 100644
index f26da02ff88931d08580046149d8c60ac09a37f9..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/condom.gif and /dev/null differ
diff --git a/public/pictures/smile/confused.gif b/public/pictures/smile/confused.gif
deleted file mode 100644
index dc335c51d82a8b773831c1f2faf5ea45ee27d457..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/confused.gif and /dev/null differ
diff --git a/public/pictures/smile/confused2.gif b/public/pictures/smile/confused2.gif
deleted file mode 100644
index c8b5f6a75d89a36d7979fa62f7c703bce732dc61..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/confused2.gif and /dev/null differ
diff --git a/public/pictures/smile/cook.gif b/public/pictures/smile/cook.gif
deleted file mode 100644
index adab66e7502474341e1b9eef771377b2f7e5e589..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/cook.gif and /dev/null differ
diff --git a/public/pictures/smile/cool.gif b/public/pictures/smile/cool.gif
deleted file mode 100644
index 4b283762b03b0fd5510161f7c330a07d7e16cad4..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/cool.gif and /dev/null differ
diff --git a/public/pictures/smile/cool2.gif b/public/pictures/smile/cool2.gif
deleted file mode 100644
index cead0306c0e38e57bdb0cc85a407b995dcbdc656..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/cool2.gif and /dev/null differ
diff --git a/public/pictures/smile/cop.gif b/public/pictures/smile/cop.gif
deleted file mode 100644
index 8b447ccb67447eccbfb8b29a497bd79c4b271968..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/cop.gif and /dev/null differ
diff --git a/public/pictures/smile/cow.gif b/public/pictures/smile/cow.gif
deleted file mode 100644
index abbe64ef499dec9e5ddc354d05aaeb9b825ee20b..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/cow.gif and /dev/null differ
diff --git a/public/pictures/smile/crap.gif b/public/pictures/smile/crap.gif
deleted file mode 100644
index 33842711f6d9a6258b2bae765c3a96ff7daa172e..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/crap.gif and /dev/null differ
diff --git a/public/pictures/smile/crash.gif b/public/pictures/smile/crash.gif
deleted file mode 100644
index 793a0d2669efd234256148ba406644007d1ce60f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/crash.gif and /dev/null differ
diff --git a/public/pictures/smile/crazy.gif b/public/pictures/smile/crazy.gif
deleted file mode 100644
index 044c59033e2a950d33738d68ea3e2b9dc664f675..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/crazy.gif and /dev/null differ
diff --git a/public/pictures/smile/crazy2.gif b/public/pictures/smile/crazy2.gif
deleted file mode 100644
index d12521e066c777136de218089d19b29793ad4e46..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/crazy2.gif and /dev/null differ
diff --git a/public/pictures/smile/crocodile.gif b/public/pictures/smile/crocodile.gif
deleted file mode 100644
index 853551c030c01f66e461050954f016163ad93d1c..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/crocodile.gif and /dev/null differ
diff --git a/public/pictures/smile/cross.gif b/public/pictures/smile/cross.gif
deleted file mode 100644
index c89f7abc23b3fc350a459bc3fb5405c3e1e6d56e..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/cross.gif and /dev/null differ
diff --git a/public/pictures/smile/crucified.gif b/public/pictures/smile/crucified.gif
deleted file mode 100644
index 00b5068c5f6e2f1d57dc9cefab96c90d2ce1d33c..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/crucified.gif and /dev/null differ
diff --git a/public/pictures/smile/cry.gif b/public/pictures/smile/cry.gif
deleted file mode 100644
index f55335d0ca0d0b810683263c683b1d4d758ef2f9..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/cry.gif and /dev/null differ
diff --git a/public/pictures/smile/cry2.gif b/public/pictures/smile/cry2.gif
deleted file mode 100644
index b4f95dba87e67c2420aa3f5682411437e6ad5485..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/cry2.gif and /dev/null differ
diff --git a/public/pictures/smile/cry3.gif b/public/pictures/smile/cry3.gif
deleted file mode 100644
index 91e9b1f36360bdc164edde0f07fe087eb3b3ed7c..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/cry3.gif and /dev/null differ
diff --git a/public/pictures/smile/crying.gif b/public/pictures/smile/crying.gif
deleted file mode 100644
index f55335d0ca0d0b810683263c683b1d4d758ef2f9..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/crying.gif and /dev/null differ
diff --git a/public/pictures/smile/crying2.gif b/public/pictures/smile/crying2.gif
deleted file mode 100644
index d7379421e2fc279c94c2982ff1c1d7fc2a102d15..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/crying2.gif and /dev/null differ
diff --git a/public/pictures/smile/ctf.gif b/public/pictures/smile/ctf.gif
deleted file mode 100644
index d1261ed64d52f6a74887e5a6f6753bfd9d350673..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/ctf.gif and /dev/null differ
diff --git a/public/pictures/smile/dance.gif b/public/pictures/smile/dance.gif
deleted file mode 100644
index 0db1248d1e27fc1493b8616027ef4773d545c283..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/dance.gif and /dev/null differ
diff --git a/public/pictures/smile/daniel.gif b/public/pictures/smile/daniel.gif
deleted file mode 100644
index 07324af1772f6560ac267fa085bc7ef9bf0741dc..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/daniel.gif and /dev/null differ
diff --git a/public/pictures/smile/dead.gif b/public/pictures/smile/dead.gif
deleted file mode 100644
index 5f25a5d9e24a9c036a86c086d4cb09b43e905470..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/dead.gif and /dev/null differ
diff --git a/public/pictures/smile/derexot.gif b/public/pictures/smile/derexot.gif
deleted file mode 100644
index 8d190dd22c9af3a11594bed99e82ae9e9d07de2f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/derexot.gif and /dev/null differ
diff --git a/public/pictures/smile/devil.gif b/public/pictures/smile/devil.gif
deleted file mode 100644
index 139106de8abe124077bf45009536a83fe6407d8b..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/devil.gif and /dev/null differ
diff --git a/public/pictures/smile/devil2.gif b/public/pictures/smile/devil2.gif
deleted file mode 100644
index 8302d8bf1b7066316bdc2022b9a16d8c32af269f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/devil2.gif and /dev/null differ
diff --git a/public/pictures/smile/diablotin.gif b/public/pictures/smile/diablotin.gif
deleted file mode 100644
index 14400cfa6d9e6712ce7312d8f2df07c9eef1fa1c..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/diablotin.gif and /dev/null differ
diff --git a/public/pictures/smile/director.gif b/public/pictures/smile/director.gif
deleted file mode 100644
index a9bbc1c079f2ade99283fefcc627b216c150999a..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/director.gif and /dev/null differ
diff --git a/public/pictures/smile/disgust.gif b/public/pictures/smile/disgust.gif
deleted file mode 100644
index e1b97403db0414c5e107f41b6b78dff2a15171f0..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/disgust.gif and /dev/null differ
diff --git a/public/pictures/smile/dope.gif b/public/pictures/smile/dope.gif
deleted file mode 100644
index d4da8d37c0a993c01d490dc4c97b18d88ffeeaf1..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/dope.gif and /dev/null differ
diff --git a/public/pictures/smile/doublepuke.gif b/public/pictures/smile/doublepuke.gif
deleted file mode 100644
index 93d7ed00a10c8e9696509ecbe4e1cf838296aff3..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/doublepuke.gif and /dev/null differ
diff --git a/public/pictures/smile/drink2.gif b/public/pictures/smile/drink2.gif
deleted file mode 100644
index 501883b863b569d1ed1534492c6d59921e64e276..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/drink2.gif and /dev/null differ
diff --git a/public/pictures/smile/drink3.gif b/public/pictures/smile/drink3.gif
deleted file mode 100644
index 0e05315dfd48c66d45412630c8506f7feceeeca2..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/drink3.gif and /dev/null differ
diff --git a/public/pictures/smile/duel.gif b/public/pictures/smile/duel.gif
deleted file mode 100644
index 77fdd3b2dc0a9636d05b517039dfb7ccf4a1c9bd..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/duel.gif and /dev/null differ
diff --git a/public/pictures/smile/eatsmiley.gif b/public/pictures/smile/eatsmiley.gif
deleted file mode 100644
index 97d86c080f3a1716a0250ef73e5ece51f3b76188..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/eatsmiley.gif and /dev/null differ
diff --git a/public/pictures/smile/eek.gif b/public/pictures/smile/eek.gif
deleted file mode 100644
index 8528cf11e34af160e8597c78f112c5197419f697..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/eek.gif and /dev/null differ
diff --git a/public/pictures/smile/eek2.gif b/public/pictures/smile/eek2.gif
deleted file mode 100644
index a0d6d9ab8f62dbaa89784af2825446b686c54c24..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/eek2.gif and /dev/null differ
diff --git a/public/pictures/smile/eek3.gif b/public/pictures/smile/eek3.gif
deleted file mode 100644
index 961fd474c3fe415af1a1bbe9577b55fce7efe51f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/eek3.gif and /dev/null differ
diff --git a/public/pictures/smile/eek4.gif b/public/pictures/smile/eek4.gif
deleted file mode 100644
index 8e6941f6be4c4ff0f33647cc17ed19088ea4c455..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/eek4.gif and /dev/null differ
diff --git a/public/pictures/smile/eek5.gif b/public/pictures/smile/eek5.gif
deleted file mode 100644
index c550c91de669bfc736242070f1d3aabc7cfd1eee..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/eek5.gif and /dev/null differ
diff --git a/public/pictures/smile/eek8.gif b/public/pictures/smile/eek8.gif
deleted file mode 100644
index 1d61a29c3fc11656537d9c3027b438fe45d29e07..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/eek8.gif and /dev/null differ
diff --git a/public/pictures/smile/embarass.gif b/public/pictures/smile/embarass.gif
deleted file mode 100644
index b57f6de70c70a99c09bb8433d9671e1dc1dbbf46..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/embarass.gif and /dev/null differ
diff --git a/public/pictures/smile/engel.gif b/public/pictures/smile/engel.gif
deleted file mode 100644
index 98d840ea5d79fb2f9bcd6ba4fa42399db0da11bf..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/engel.gif and /dev/null differ
diff --git a/public/pictures/smile/ent.gif b/public/pictures/smile/ent.gif
deleted file mode 100644
index 40078cf0a20be7e827937a9944adef23184c5454..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/ent.gif and /dev/null differ
diff --git a/public/pictures/smile/erm.gif b/public/pictures/smile/erm.gif
deleted file mode 100644
index f5ea71dbae5f8043b1f7e790f4186fd773e3d14e..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/erm.gif and /dev/null differ
diff --git a/public/pictures/smile/error.gif b/public/pictures/smile/error.gif
deleted file mode 100644
index 1a5cd3f75d956c0fb282c79d9a2b5ff168342e9e..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/error.gif and /dev/null differ
diff --git a/public/pictures/smile/errr.gif b/public/pictures/smile/errr.gif
deleted file mode 100644
index 84fda2a4f08843d57e924e4f21f8aaf755016e7b..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/errr.gif and /dev/null differ
diff --git a/public/pictures/smile/evilidea.gif b/public/pictures/smile/evilidea.gif
deleted file mode 100644
index efda7b120c4317f2861e93ea0b98c8fed51ab899..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/evilidea.gif and /dev/null differ
diff --git a/public/pictures/smile/evillol.gif b/public/pictures/smile/evillol.gif
deleted file mode 100644
index dfa5e01cd9e0adec9b103c746223382dad56dc88..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/evillol.gif and /dev/null differ
diff --git a/public/pictures/smile/eviltongue.gif b/public/pictures/smile/eviltongue.gif
deleted file mode 100644
index 22747fd9e51696546847ce44342ce3914ea161ea..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/eviltongue.gif and /dev/null differ
diff --git a/public/pictures/smile/exclaim.gif b/public/pictures/smile/exclaim.gif
deleted file mode 100644
index 6e50e2eecdb54d2ee3a14c39547a6b454524f98d..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/exclaim.gif and /dev/null differ
diff --git a/public/pictures/smile/explode.gif b/public/pictures/smile/explode.gif
deleted file mode 100644
index 62561fd7edde50719894887243b90cf7874ef120..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/explode.gif and /dev/null differ
diff --git a/public/pictures/smile/fairy.gif b/public/pictures/smile/fairy.gif
deleted file mode 100644
index 9ea8519f0b25be335d1cf8297f0005f2009ebcf0..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/fairy.gif and /dev/null differ
diff --git a/public/pictures/smile/fart.gif b/public/pictures/smile/fart.gif
deleted file mode 100644
index 99f1a6a734e22e7a2dd5917ffe5c378fe974074c..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/fart.gif and /dev/null differ
diff --git a/public/pictures/smile/feierabend.gif b/public/pictures/smile/feierabend.gif
deleted file mode 100644
index 49656d35d59a614a1c00e8621238a55f36c3e845..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/feierabend.gif and /dev/null differ
diff --git a/public/pictures/smile/fight.gif b/public/pictures/smile/fight.gif
deleted file mode 100644
index 36caecca6ed26a0a958503a9a0cc4b5753a68ddb..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/fight.gif and /dev/null differ
diff --git a/public/pictures/smile/fire.gif b/public/pictures/smile/fire.gif
deleted file mode 100644
index 8eec821f73e956e2a6ad2ed588475de910e3c0aa..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/fire.gif and /dev/null differ
diff --git a/public/pictures/smile/firedevil.gif b/public/pictures/smile/firedevil.gif
deleted file mode 100644
index 02bc81410ef3415463979362c48416a2b45c0bec..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/firedevil.gif and /dev/null differ
diff --git a/public/pictures/smile/flamethrower.gif b/public/pictures/smile/flamethrower.gif
deleted file mode 100644
index 577c7448dff4576f3d6f53a75c8ae41aef80ad9d..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/flamethrower.gif and /dev/null differ
diff --git a/public/pictures/smile/foo.gif b/public/pictures/smile/foo.gif
deleted file mode 100644
index d1212e7e3e3dee1e57c14fa41a28e0b514acbc55..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/foo.gif and /dev/null differ
diff --git a/public/pictures/smile/fouet.gif b/public/pictures/smile/fouet.gif
deleted file mode 100644
index 7d78496b55ed2fc2f850fe0f115ac2dcf0b0fdaa..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/fouet.gif and /dev/null differ
diff --git a/public/pictures/smile/francais.gif b/public/pictures/smile/francais.gif
deleted file mode 100644
index 2aa944befb3bf887de2787249ba9630610d7b2d7..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/francais.gif and /dev/null differ
diff --git a/public/pictures/smile/frog_kiss.gif b/public/pictures/smile/frog_kiss.gif
deleted file mode 100644
index 1abc9f3225425441613ec5743d61a7c055fb7b7d..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/frog_kiss.gif and /dev/null differ
diff --git a/public/pictures/smile/frown.gif b/public/pictures/smile/frown.gif
deleted file mode 100644
index f62de0bac7c8f6447122234502dec180fad1ce86..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/frown.gif and /dev/null differ
diff --git a/public/pictures/smile/frown2.gif b/public/pictures/smile/frown2.gif
deleted file mode 100644
index 5a01878bdac68a71296ee0103f580986e6b77e1d..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/frown2.gif and /dev/null differ
diff --git a/public/pictures/smile/grazy.gif b/public/pictures/smile/grazy.gif
deleted file mode 100644
index f31fc6f5044ec09cbfb8767f28ad0e0a30aa121f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/grazy.gif and /dev/null differ
diff --git a/public/pictures/smile/grenade.gif b/public/pictures/smile/grenade.gif
deleted file mode 100644
index e03f73b6483dbe7bd32e192d6295486fc8b8e538..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/grenade.gif and /dev/null differ
diff --git a/public/pictures/smile/gulp.gif b/public/pictures/smile/gulp.gif
deleted file mode 100644
index e1b90ce70d5764efd59eeb8356974fb56c90e8cf..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/gulp.gif and /dev/null differ
diff --git a/public/pictures/smile/hammer2.gif b/public/pictures/smile/hammer2.gif
deleted file mode 100644
index 662237f67fd7914d89acc103228482b8b645d4e6..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/hammer2.gif and /dev/null differ
diff --git a/public/pictures/smile/hanged.gif b/public/pictures/smile/hanged.gif
deleted file mode 100644
index a11efb3ed2031cd3a93f42524c96693bff0d89af..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/hanged.gif and /dev/null differ
diff --git a/public/pictures/smile/headhammer.gif b/public/pictures/smile/headhammer.gif
deleted file mode 100644
index 662237f67fd7914d89acc103228482b8b645d4e6..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/headhammer.gif and /dev/null differ
diff --git a/public/pictures/smile/hi.gif b/public/pictures/smile/hi.gif
deleted file mode 100644
index b430054b1ecc6fd49e59ab117d4c54c55014cc3f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/hi.gif and /dev/null differ
diff --git a/public/pictures/smile/hmmm.gif b/public/pictures/smile/hmmm.gif
deleted file mode 100644
index 74c7d92fde5e6eb15772ad76f98557b11d5ba966..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/hmmm.gif and /dev/null differ
diff --git a/public/pictures/smile/holyfly.gif b/public/pictures/smile/holyfly.gif
deleted file mode 100644
index bb3af24e3a769fbcdbbdef39fab9bd0f5202add5..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/holyfly.gif and /dev/null differ
diff --git a/public/pictures/smile/icon_help.gif b/public/pictures/smile/icon_help.gif
deleted file mode 100644
index 25903edb1a5eb11c63e48814458f879d4512fd06..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/icon_help.gif and /dev/null differ
diff --git a/public/pictures/smile/icon_kiss.gif b/public/pictures/smile/icon_kiss.gif
deleted file mode 100644
index 3c00ec47fb681cc8e1852c82336737e2ee678ee7..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/icon_kiss.gif and /dev/null differ
diff --git a/public/pictures/smile/idea.gif b/public/pictures/smile/idea.gif
deleted file mode 100644
index 3ce797646d2f874e7d2da677d6c7b39396247cc7..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/idea.gif and /dev/null differ
diff --git a/public/pictures/smile/jap.gif b/public/pictures/smile/jap.gif
deleted file mode 100644
index fdbbe38b0f19f43812c6f131c2d3432a601dcffa..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/jap.gif and /dev/null differ
diff --git a/public/pictures/smile/jesus.gif b/public/pictures/smile/jesus.gif
deleted file mode 100644
index 485d9f8a501c61e06576b4c22fae663eb0d35cc5..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/jesus.gif and /dev/null differ
diff --git a/public/pictures/smile/joint.gif b/public/pictures/smile/joint.gif
deleted file mode 100644
index daadd28644488b2482114df654f0da2acfa3aac4..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/joint.gif and /dev/null differ
diff --git a/public/pictures/smile/jointbounce.gif b/public/pictures/smile/jointbounce.gif
deleted file mode 100644
index 5ca07d926c4d5ebc4409b1952c86fa097b51e8fe..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/jointbounce.gif and /dev/null differ
diff --git a/public/pictures/smile/kaffee.gif b/public/pictures/smile/kaffee.gif
deleted file mode 100644
index 05d656e17ef01df59f0a4c5f72a7fe0b03f983af..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/kaffee.gif and /dev/null differ
diff --git a/public/pictures/smile/kaioken.gif b/public/pictures/smile/kaioken.gif
deleted file mode 100644
index 68acaae5da6a809fbcfec66ed7acf74013f0013c..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/kaioken.gif and /dev/null differ
diff --git a/public/pictures/smile/karate.gif b/public/pictures/smile/karate.gif
deleted file mode 100644
index 88cc79f07c926af4933cf2ff9ec008ed40e97fde..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/karate.gif and /dev/null differ
diff --git a/public/pictures/smile/keks.gif b/public/pictures/smile/keks.gif
deleted file mode 100644
index 69d0fe9b2e9e6b10bd3bac85140fcdcaa23ff0ac..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/keks.gif and /dev/null differ
diff --git a/public/pictures/smile/ketten.gif b/public/pictures/smile/ketten.gif
deleted file mode 100644
index f23766bb4cee7bf17e4b357bc6c77e9aa0a774d3..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/ketten.gif and /dev/null differ
diff --git a/public/pictures/smile/kicher.gif b/public/pictures/smile/kicher.gif
deleted file mode 100644
index 7692636a5d16703dbd5e7652f6f44b9d6d8a332f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/kicher.gif and /dev/null differ
diff --git a/public/pictures/smile/kiss.gif b/public/pictures/smile/kiss.gif
deleted file mode 100644
index 057cb31628c36d3f85742c58db1c042da5411ee1..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/kiss.gif and /dev/null differ
diff --git a/public/pictures/smile/klo.gif b/public/pictures/smile/klo.gif
deleted file mode 100644
index dd0347570bd93fda743a2e11d03171316e290445..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/klo.gif and /dev/null differ
diff --git a/public/pictures/smile/kloguck.gif b/public/pictures/smile/kloguck.gif
deleted file mode 100644
index c371a13a64252e588849d641e21257bf7e3e8bc5..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/kloguck.gif and /dev/null differ
diff --git a/public/pictures/smile/knife.gif b/public/pictures/smile/knife.gif
deleted file mode 100644
index f15ec6464eaa0b8eaeb771e62e71a75ea7d845a4..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/knife.gif and /dev/null differ
diff --git a/public/pictures/smile/kratz.gif b/public/pictures/smile/kratz.gif
deleted file mode 100644
index dec1a45f2ef53b6b8c36b184d209d5fa7bfaefa1..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/kratz.gif and /dev/null differ
diff --git a/public/pictures/smile/ladysman.gif b/public/pictures/smile/ladysman.gif
deleted file mode 100644
index 0369f06d7dad179f2a741ab0919a45e9a8d71875..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/ladysman.gif and /dev/null differ
diff --git a/public/pictures/smile/laser.gif b/public/pictures/smile/laser.gif
deleted file mode 100644
index 7fe492f6310c818652a45d8643d4e37e53ca5985..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/laser.gif and /dev/null differ
diff --git a/public/pictures/smile/laughoutloud.gif b/public/pictures/smile/laughoutloud.gif
deleted file mode 100644
index 80857994963b60d3e0aedfceeb09b4aa3760cad7..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/laughoutloud.gif and /dev/null differ
diff --git a/public/pictures/smile/lecture.gif b/public/pictures/smile/lecture.gif
deleted file mode 100644
index efc209a5f66b85d45e7e60f7f156cfb6987ff8ba..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/lecture.gif and /dev/null differ
diff --git a/public/pictures/smile/lol.gif b/public/pictures/smile/lol.gif
deleted file mode 100644
index 0dd615b3909a6bce9fdce50d3084dfb9207f5530..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/lol.gif and /dev/null differ
diff --git a/public/pictures/smile/lol2.gif b/public/pictures/smile/lol2.gif
deleted file mode 100644
index 2a0472679f97cdce0bf7beac5ccfddb74a055389..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/lol2.gif and /dev/null differ
diff --git a/public/pictures/smile/love.gif b/public/pictures/smile/love.gif
deleted file mode 100644
index 9fe36da9ad6ee4b9a8d9f5f5fe4274bddcc5bbc2..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/love.gif and /dev/null differ
diff --git a/public/pictures/smile/lsabre.gif b/public/pictures/smile/lsabre.gif
deleted file mode 100644
index da1b9504fb2a4e7b7b1aba3d9d1d40a835bb4f02..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/lsabre.gif and /dev/null differ
diff --git a/public/pictures/smile/lsvader.gif b/public/pictures/smile/lsvader.gif
deleted file mode 100644
index 11c13ef37246fe08ba32883e1ca486ce20b139fa..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/lsvader.gif and /dev/null differ
diff --git a/public/pictures/smile/lurk.gif b/public/pictures/smile/lurk.gif
deleted file mode 100644
index ef89ca65d10beafd8ff97584179f89d8a8ea97f5..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/lurk.gif and /dev/null differ
diff --git a/public/pictures/smile/mad.gif b/public/pictures/smile/mad.gif
deleted file mode 100644
index 63ce5f0d6d82172224a70b300a45f69c04be8d43..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/mad.gif and /dev/null differ
diff --git a/public/pictures/smile/male.gif b/public/pictures/smile/male.gif
deleted file mode 100644
index 02c5071bd42c37bd82978a8564488422b54b0794..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/male.gif and /dev/null differ
diff --git a/public/pictures/smile/megawink.gif b/public/pictures/smile/megawink.gif
deleted file mode 100644
index a86e6db6d5f817d974d66bf1c12dee388c5ad0ec..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/megawink.gif and /dev/null differ
diff --git a/public/pictures/smile/mg.gif b/public/pictures/smile/mg.gif
deleted file mode 100644
index 1efd040f58a18bbf3d73c54e5c5b814023ba8c5a..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/mg.gif and /dev/null differ
diff --git a/public/pictures/smile/nixweiss.gif b/public/pictures/smile/nixweiss.gif
deleted file mode 100644
index c8b6daf0b66de04d236fafc6cde847bfc553793b..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/nixweiss.gif and /dev/null differ
diff --git a/public/pictures/smile/no.gif b/public/pictures/smile/no.gif
deleted file mode 100644
index 8726d947d3e62faa87f3c59c02af6b008209059c..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/no.gif and /dev/null differ
diff --git a/public/pictures/smile/nono.gif b/public/pictures/smile/nono.gif
deleted file mode 100644
index 7507d2f3bdf9afd520a3df7b3157f93f153f7c16..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/nono.gif and /dev/null differ
diff --git a/public/pictures/smile/nuke.gif b/public/pictures/smile/nuke.gif
deleted file mode 100644
index 10d4ec4f184cbf862e45d9d9cc70a0d3a672f0ed..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/nuke.gif and /dev/null differ
diff --git a/public/pictures/smile/nuts.gif b/public/pictures/smile/nuts.gif
deleted file mode 100644
index 69df669424cf5509c35d9041122d69c258c3e55e..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/nuts.gif and /dev/null differ
diff --git a/public/pictures/smile/oeh.gif b/public/pictures/smile/oeh.gif
deleted file mode 100644
index f1f78a5cf8e26fa3fb5542523b561bc0dfd41237..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/oeh.gif and /dev/null differ
diff --git a/public/pictures/smile/ohoh.gif b/public/pictures/smile/ohoh.gif
deleted file mode 100644
index a84c71f78158b3855f10c00146f855e2dcf8c2c5..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/ohoh.gif and /dev/null differ
diff --git a/public/pictures/smile/oink.gif b/public/pictures/smile/oink.gif
deleted file mode 100644
index d9b48e83b8fe46f6d11c5c24b2f0ddd4fa209964..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/oink.gif and /dev/null differ
diff --git a/public/pictures/smile/opa.gif b/public/pictures/smile/opa.gif
deleted file mode 100644
index 1a816c0a19a176d51444c75202edd2ce99dfc4cd..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/opa.gif and /dev/null differ
diff --git a/public/pictures/smile/outtahere.gif b/public/pictures/smile/outtahere.gif
deleted file mode 100644
index d78fb0961f7e9e5cbac71fd9c329004c4d4480cb..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/outtahere.gif and /dev/null differ
diff --git a/public/pictures/smile/pain10.gif b/public/pictures/smile/pain10.gif
deleted file mode 100644
index 43be69b354f7fc3dcf30a2a366e4926c99d2ee1f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/pain10.gif and /dev/null differ
diff --git a/public/pictures/smile/papst.gif b/public/pictures/smile/papst.gif
deleted file mode 100644
index 390c75d6c7995fb1e01666243b26e96444db28ee..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/papst.gif and /dev/null differ
diff --git a/public/pictures/smile/party.gif b/public/pictures/smile/party.gif
deleted file mode 100644
index 313a0c21ae0079555eb9bd61dc4cf80166414fae..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/party.gif and /dev/null differ
diff --git a/public/pictures/smile/pcangry.gif b/public/pictures/smile/pcangry.gif
deleted file mode 100644
index ad49c3163c82a64dcf3b7d27850e57bcab5fa1d3..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/pcangry.gif and /dev/null differ
diff --git a/public/pictures/smile/phaser.gif b/public/pictures/smile/phaser.gif
deleted file mode 100644
index d3fab08aa56614df79cc9f973c41d3e52e31db36..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/phaser.gif and /dev/null differ
diff --git a/public/pictures/smile/piggy.gif b/public/pictures/smile/piggy.gif
deleted file mode 100644
index 77e1b1c4aaaadaa62fd2fcf4056f176b68514759..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/piggy.gif and /dev/null differ
diff --git a/public/pictures/smile/pills.gif b/public/pictures/smile/pills.gif
deleted file mode 100644
index fccd5eef753d099c06f8900fe1d3d4b811d95717..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/pills.gif and /dev/null differ
diff --git a/public/pictures/smile/plasma.gif b/public/pictures/smile/plasma.gif
deleted file mode 100644
index 8ca838da0521e1b536c53e4fe4cd3705891ffae0..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/plasma.gif and /dev/null differ
diff --git a/public/pictures/smile/platt.gif b/public/pictures/smile/platt.gif
deleted file mode 100644
index da92daa8ea562ed8d2433e28b6917ab1996f401f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/platt.gif and /dev/null differ
diff --git a/public/pictures/smile/pray.gif b/public/pictures/smile/pray.gif
deleted file mode 100644
index 4a42e36f5c257b1ec2b4b7181ecf82c9508e61cf..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/pray.gif and /dev/null differ
diff --git a/public/pictures/smile/puke2.gif b/public/pictures/smile/puke2.gif
deleted file mode 100644
index fa5a57507b3bcfa44894731d651b66e5ea279881..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/puke2.gif and /dev/null differ
diff --git a/public/pictures/smile/puke3.gif b/public/pictures/smile/puke3.gif
deleted file mode 100644
index 17d5465b6b7fd3d4b1d97adbe9bc7d7d06093aeb..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/puke3.gif and /dev/null differ
diff --git a/public/pictures/smile/pukey.gif b/public/pictures/smile/pukey.gif
deleted file mode 100644
index a99f89b5c7e7b15f2588f9f908d8c84b91ccaa80..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/pukey.gif and /dev/null differ
diff --git a/public/pictures/smile/pyth.gif b/public/pictures/smile/pyth.gif
deleted file mode 100644
index 3a29caac1c74a614278493c16ca598800b5c3a8a..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/pyth.gif and /dev/null differ
diff --git a/public/pictures/smile/question.gif b/public/pictures/smile/question.gif
deleted file mode 100644
index 5a595ba9c2268deb4b22a8c98bed7c3a1f3de1b0..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/question.gif and /dev/null differ
diff --git a/public/pictures/smile/razz.gif b/public/pictures/smile/razz.gif
deleted file mode 100644
index 5bbfd95e739041ec31c3f3316918ae4d56e166af..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/razz.gif and /dev/null differ
diff --git a/public/pictures/smile/read.gif b/public/pictures/smile/read.gif
deleted file mode 100644
index c19b49e9a2b04018bfb9a06ea5ebfe76cf42a17c..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/read.gif and /dev/null differ
diff --git a/public/pictures/smile/reallymad.gif b/public/pictures/smile/reallymad.gif
deleted file mode 100644
index 5bc6a7c16b5d0155cc9d027615e4a147afe76b4b..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/reallymad.gif and /dev/null differ
diff --git a/public/pictures/smile/redface.gif b/public/pictures/smile/redface.gif
deleted file mode 100644
index 3d738682473b9c9f570ea22fd8c5f7b8ba59dd4f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/redface.gif and /dev/null differ
diff --git a/public/pictures/smile/redface2.gif b/public/pictures/smile/redface2.gif
deleted file mode 100644
index f399a65c3086aa592f11382f2c1660ef676292d3..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/redface2.gif and /dev/null differ
diff --git a/public/pictures/smile/remybussi.gif b/public/pictures/smile/remybussi.gif
deleted file mode 100644
index 699acb3e91414a299743c2fa9e0d0efe794e736f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/remybussi.gif and /dev/null differ
diff --git a/public/pictures/smile/rockdahouse.gif b/public/pictures/smile/rockdahouse.gif
deleted file mode 100644
index 8a43ff11b355bf96d2b16110db772d40714cb7ab..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/rockdahouse.gif and /dev/null differ
diff --git a/public/pictures/smile/rockets.gif b/public/pictures/smile/rockets.gif
deleted file mode 100644
index 3095bd1d5eb9cb339b611a5ad5c2d965ff5c1b1b..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/rockets.gif and /dev/null differ
diff --git a/public/pictures/smile/roflmao.gif b/public/pictures/smile/roflmao.gif
deleted file mode 100644
index 758e9e951c56fbb09bfd10f97dde3e49706719e0..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/roflmao.gif and /dev/null differ
diff --git a/public/pictures/smile/roll.gif b/public/pictures/smile/roll.gif
deleted file mode 100644
index 2de389927f5633cacfd18e2189bcabb6aecb92a1..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/roll.gif and /dev/null differ
diff --git a/public/pictures/smile/roll2.gif b/public/pictures/smile/roll2.gif
deleted file mode 100644
index 3b73bac405e6b11b24e224f00d0b49a345453c14..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/roll2.gif and /dev/null differ
diff --git a/public/pictures/smile/rolleyes.gif b/public/pictures/smile/rolleyes.gif
deleted file mode 100644
index 1abab1e03e1a610e9622108cf9a6120d3858278a..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/rolleyes.gif and /dev/null differ
diff --git a/public/pictures/smile/rolling.gif b/public/pictures/smile/rolling.gif
deleted file mode 100644
index 16f6546570d8fdfee33d8a055eeb3b304c666e91..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/rolling.gif and /dev/null differ
diff --git a/public/pictures/smile/rotfl.gif b/public/pictures/smile/rotfl.gif
deleted file mode 100644
index c0d3d2990160bcf7350886c61457afafde90c047..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/rotfl.gif and /dev/null differ
diff --git a/public/pictures/smile/rotten.gif b/public/pictures/smile/rotten.gif
deleted file mode 100644
index a23b2258e41eee72dde5574af861687efe86486a..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/rotten.gif and /dev/null differ
diff --git a/public/pictures/smile/sandkasten.gif b/public/pictures/smile/sandkasten.gif
deleted file mode 100644
index a33a1c68bc8203e5c89b486e613fa73682f32e5e..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/sandkasten.gif and /dev/null differ
diff --git a/public/pictures/smile/sarcblink.gif b/public/pictures/smile/sarcblink.gif
deleted file mode 100644
index 2de389927f5633cacfd18e2189bcabb6aecb92a1..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/sarcblink.gif and /dev/null differ
diff --git a/public/pictures/smile/saywhat.gif b/public/pictures/smile/saywhat.gif
deleted file mode 100644
index b0201cc69d51b7e394319d5459f153933c8babde..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/saywhat.gif and /dev/null differ
diff --git a/public/pictures/smile/scene.gif b/public/pictures/smile/scene.gif
deleted file mode 100644
index efd0e456edcdb81cfe25ffc3a0f0cfed2d153ae9..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/scene.gif and /dev/null differ
diff --git a/public/pictures/smile/scream.gif b/public/pictures/smile/scream.gif
deleted file mode 100644
index 7cee890a4395de8342ebeae865c237e60b313ace..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/scream.gif and /dev/null differ
diff --git a/public/pictures/smile/scream2.gif b/public/pictures/smile/scream2.gif
deleted file mode 100644
index 7cee890a4395de8342ebeae865c237e60b313ace..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/scream2.gif and /dev/null differ
diff --git a/public/pictures/smile/sg.gif b/public/pictures/smile/sg.gif
deleted file mode 100644
index 9289a7ce044cf2ce1e4998a67866292604d3fc67..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/sg.gif and /dev/null differ
diff --git a/public/pictures/smile/shakko.gif b/public/pictures/smile/shakko.gif
deleted file mode 100644
index 53b73d4531d9dac3d526d01c2a0dab9351c8c483..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/shakko.gif and /dev/null differ
diff --git a/public/pictures/smile/shine.gif b/public/pictures/smile/shine.gif
deleted file mode 100644
index 0c019b8ce0a9d1095fbc1691a45c05be20f296ac..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/shine.gif and /dev/null differ
diff --git a/public/pictures/smile/shock.gif b/public/pictures/smile/shock.gif
deleted file mode 100644
index 6971b7c164f18b3443a77926ec1ef8f7f4a81229..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/shock.gif and /dev/null differ
diff --git a/public/pictures/smile/shocked.gif b/public/pictures/smile/shocked.gif
deleted file mode 100644
index 8f9940b77ba6b67ea4fd9b129b69eea7e8c296b2..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/shocked.gif and /dev/null differ
diff --git a/public/pictures/smile/shy.gif b/public/pictures/smile/shy.gif
deleted file mode 100644
index 71d174bc1cb056df1cec2d5efc3fd7df9ea77ca6..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/shy.gif and /dev/null differ
diff --git a/public/pictures/smile/sick.gif b/public/pictures/smile/sick.gif
deleted file mode 100644
index 828abafac0cf2184e697adb1da6bb17478b590f4..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/sick.gif and /dev/null differ
diff --git a/public/pictures/smile/slayer.gif b/public/pictures/smile/slayer.gif
deleted file mode 100644
index a0b0cf56d5d96fe2619512e259323c372bc30fd6..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/slayer.gif and /dev/null differ
diff --git a/public/pictures/smile/sleeping.gif b/public/pictures/smile/sleeping.gif
deleted file mode 100644
index eb8342c1092a377b2d4eb2022301fb26f5222afd..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/sleeping.gif and /dev/null differ
diff --git a/public/pictures/smile/sleepy.gif b/public/pictures/smile/sleepy.gif
deleted file mode 100644
index 2dd6895923e5e9c4248e803e616ae9aeab8ee372..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/sleepy.gif and /dev/null differ
diff --git a/public/pictures/smile/smash.gif b/public/pictures/smile/smash.gif
deleted file mode 100644
index 018f2cde72a074ca0efe400b58176bdb9025d7c3..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/smash.gif and /dev/null differ
diff --git a/public/pictures/smile/smile.gif b/public/pictures/smile/smile.gif
deleted file mode 100644
index 83b4eaa7ca15ff5717354c780b4015c5410ef134..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/smile.gif and /dev/null differ
diff --git a/public/pictures/smile/smileysex.gif b/public/pictures/smile/smileysex.gif
deleted file mode 100644
index 843358c5379779a583940e5c8dd551ee5f8c9f7b..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/smileysex.gif and /dev/null differ
diff --git a/public/pictures/smile/smoke.gif b/public/pictures/smile/smoke.gif
deleted file mode 100644
index 16fbd311fe22df05a268af702be55046766f14dc..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/smoke.gif and /dev/null differ
diff --git a/public/pictures/smile/smokin.gif b/public/pictures/smile/smokin.gif
deleted file mode 100644
index 16fbd311fe22df05a268af702be55046766f14dc..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/smokin.gif and /dev/null differ
diff --git a/public/pictures/smile/spam.gif b/public/pictures/smile/spam.gif
deleted file mode 100644
index ab9178bc55ac45c244a3b1eaddbbb2852d00b1e2..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/spam.gif and /dev/null differ
diff --git a/public/pictures/smile/sperm.gif b/public/pictures/smile/sperm.gif
deleted file mode 100644
index 23abbaa5ba52f75cc99c8fe640c055465e0ee4e2..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/sperm.gif and /dev/null differ
diff --git a/public/pictures/smile/spookie.gif b/public/pictures/smile/spookie.gif
deleted file mode 100644
index cb83ea995efec1e4f7c8f342f4c8fe2f9ae81a9c..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/spookie.gif and /dev/null differ
diff --git a/public/pictures/smile/stinke.gif b/public/pictures/smile/stinke.gif
deleted file mode 100644
index b2fe783cc91e2e14f5cbcff3a39bc27be0f2b2fe..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/stinke.gif and /dev/null differ
diff --git a/public/pictures/smile/strange.gif b/public/pictures/smile/strange.gif
deleted file mode 100644
index b47035cee4d484e5df4e9d6f90e18a083349ffe8..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/strange.gif and /dev/null differ
diff --git a/public/pictures/smile/studip.gif b/public/pictures/smile/studip.gif
deleted file mode 100644
index 903506a5fed5218db9d1f4bcaffd6a2706adfa4e..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/studip.gif and /dev/null differ
diff --git a/public/pictures/smile/sun.gif b/public/pictures/smile/sun.gif
deleted file mode 100644
index 6fdc034d285b6832d5d6567503406c372b61c7a3..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/sun.gif and /dev/null differ
diff --git a/public/pictures/smile/sunglasses.gif b/public/pictures/smile/sunglasses.gif
deleted file mode 100644
index 6fdc034d285b6832d5d6567503406c372b61c7a3..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/sunglasses.gif and /dev/null differ
diff --git a/public/pictures/smile/surprised.gif b/public/pictures/smile/surprised.gif
deleted file mode 100644
index cb21424319829487d477e5f17262891c1be03e8c..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/surprised.gif and /dev/null differ
diff --git a/public/pictures/smile/taetschel.gif b/public/pictures/smile/taetschel.gif
deleted file mode 100644
index dd09e3c3b5930e6e3661ae46c589e2b392cc3d28..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/taetschel.gif and /dev/null differ
diff --git a/public/pictures/smile/tap.gif b/public/pictures/smile/tap.gif
deleted file mode 100644
index 0c07b379defb89f32b5d142297fba4034a5534a8..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/tap.gif and /dev/null differ
diff --git a/public/pictures/smile/tasty.gif b/public/pictures/smile/tasty.gif
deleted file mode 100644
index 2c743e8fbdb94f9ef56cde99df87bf53365342ce..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/tasty.gif and /dev/null differ
diff --git a/public/pictures/smile/tdo9.gif b/public/pictures/smile/tdo9.gif
deleted file mode 100644
index a87c24ef5f8fb108a374696ecfc254d534f3c961..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/tdo9.gif and /dev/null differ
diff --git a/public/pictures/smile/teethbrush.gif b/public/pictures/smile/teethbrush.gif
deleted file mode 100644
index 916dfabb48e915085864d6244ff911d3e52a3276..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/teethbrush.gif and /dev/null differ
diff --git a/public/pictures/smile/thefinger.gif b/public/pictures/smile/thefinger.gif
deleted file mode 100644
index 060b0e0172d77b80b6f1c02a048bf202ebf41e58..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/thefinger.gif and /dev/null differ
diff --git a/public/pictures/smile/threemonkey.gif b/public/pictures/smile/threemonkey.gif
deleted file mode 100644
index 0d1e0de7628734df96520df1b8dc30986bf56975..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/threemonkey.gif and /dev/null differ
diff --git a/public/pictures/smile/thumb.gif b/public/pictures/smile/thumb.gif
deleted file mode 100644
index a60a287e2e742538d1642fee45179c8b54968922..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/thumb.gif and /dev/null differ
diff --git a/public/pictures/smile/ticking.gif b/public/pictures/smile/ticking.gif
deleted file mode 100644
index 0b2138cc014b565d718d3ea69b9027674d1db2fe..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/ticking.gif and /dev/null differ
diff --git a/public/pictures/smile/tomato.gif b/public/pictures/smile/tomato.gif
deleted file mode 100644
index f028557e8927103b59359d0b93cefa2a7e8e817e..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/tomato.gif and /dev/null differ
diff --git a/public/pictures/smile/tongue.gif b/public/pictures/smile/tongue.gif
deleted file mode 100644
index e1eeb15a77198cc953fbe21eae7a7f5f3f7ce629..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/tongue.gif and /dev/null differ
diff --git a/public/pictures/smile/tongue2.gif b/public/pictures/smile/tongue2.gif
deleted file mode 100644
index 95c07d8f166a260e7f4e53759de3dfe7ebc9a226..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/tongue2.gif and /dev/null differ
diff --git a/public/pictures/smile/tongue3.gif b/public/pictures/smile/tongue3.gif
deleted file mode 100644
index a6594b3e097ddc8d286295def50ae984c967527b..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/tongue3.gif and /dev/null differ
diff --git a/public/pictures/smile/tongue4.gif b/public/pictures/smile/tongue4.gif
deleted file mode 100644
index 95c07d8f166a260e7f4e53759de3dfe7ebc9a226..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/tongue4.gif and /dev/null differ
diff --git a/public/pictures/smile/tonguerase.gif b/public/pictures/smile/tonguerase.gif
deleted file mode 100644
index 1c0ac25ad504a51a2b78036bf2bb5cc4f245d231..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/tonguerase.gif and /dev/null differ
diff --git a/public/pictures/smile/trippel.gif b/public/pictures/smile/trippel.gif
deleted file mode 100644
index 425006a16d3efd629d3ec4e2c61718e9b20f6864..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/trippel.gif and /dev/null differ
diff --git a/public/pictures/smile/tux.gif b/public/pictures/smile/tux.gif
deleted file mode 100644
index 125403726de3b7c8ffbdabe8d9058b63a6cad45b..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/tux.gif and /dev/null differ
diff --git a/public/pictures/smile/twak.gif b/public/pictures/smile/twak.gif
deleted file mode 100644
index 73c578565d72496f9fd4a5e800abd117021d5124..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/twak.gif and /dev/null differ
diff --git a/public/pictures/smile/uarg.gif b/public/pictures/smile/uarg.gif
deleted file mode 100644
index 0806e27d5d6b3fe910391448ae8d5764cd16fa78..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/uarg.gif and /dev/null differ
diff --git a/public/pictures/smile/ugly.gif b/public/pictures/smile/ugly.gif
deleted file mode 100644
index 35b10b0cc3accb5acae8df241324137041cf369a..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/ugly.gif and /dev/null differ
diff --git a/public/pictures/smile/uhoh.gif b/public/pictures/smile/uhoh.gif
deleted file mode 100644
index 3cc808898fa448d408333964392759c7c07d968f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/uhoh.gif and /dev/null differ
diff --git a/public/pictures/smile/uhoh2.gif b/public/pictures/smile/uhoh2.gif
deleted file mode 100644
index d4aa23bcf7c0a5e94b44041e759c5fba8b1d8a4f..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/uhoh2.gif and /dev/null differ
diff --git a/public/pictures/smile/uhoh3.gif b/public/pictures/smile/uhoh3.gif
deleted file mode 100644
index 0991941aeb910c94ff9e4e16ac8522aa8241a57a..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/uhoh3.gif and /dev/null differ
diff --git a/public/pictures/smile/undwech.gif b/public/pictures/smile/undwech.gif
deleted file mode 100644
index 2aeac98af8da06972d4f99e151449964b37e4b8a..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/undwech.gif and /dev/null differ
diff --git a/public/pictures/smile/upps.gif b/public/pictures/smile/upps.gif
deleted file mode 100644
index 5d3978106a2da37441ed17c9d05383b367570d46..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/upps.gif and /dev/null differ
diff --git a/public/pictures/smile/uzi.gif b/public/pictures/smile/uzi.gif
deleted file mode 100644
index 25cfc5e2b3149b991b8643d2ed54c42b5ea7fbe7..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/uzi.gif and /dev/null differ
diff --git a/public/pictures/smile/vtff.gif b/public/pictures/smile/vtff.gif
deleted file mode 100644
index 588f2d75ddfebc739dd4bcbfe108609083f225a5..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/vtff.gif and /dev/null differ
diff --git a/public/pictures/smile/w00t.gif b/public/pictures/smile/w00t.gif
deleted file mode 100644
index 281d6ce76cca6ca7f7d36c728ca1c9910521c58d..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/w00t.gif and /dev/null differ
diff --git a/public/pictures/smile/wand.gif b/public/pictures/smile/wand.gif
deleted file mode 100644
index 539f853511cec940a93c5ff68350bd366e0b3b52..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/wand.gif and /dev/null differ
diff --git a/public/pictures/smile/wavey.gif b/public/pictures/smile/wavey.gif
deleted file mode 100644
index f3e793570bd1c2618cd16c9e55eed931e8f714ae..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/wavey.gif and /dev/null differ
diff --git a/public/pictures/smile/wavey2.gif b/public/pictures/smile/wavey2.gif
deleted file mode 100644
index f3b584ed7fe2a850a21287aab9e941e0ef7fbdc8..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/wavey2.gif and /dev/null differ
diff --git a/public/pictures/smile/whisper.gif b/public/pictures/smile/whisper.gif
deleted file mode 100644
index 2526dee26d9b28e98f66b355764b03fcca3654a9..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/whisper.gif and /dev/null differ
diff --git a/public/pictures/smile/win.gif b/public/pictures/smile/win.gif
deleted file mode 100644
index 6c12fdd3a91777c0eb438f165d62b97677464efd..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/win.gif and /dev/null differ
diff --git a/public/pictures/smile/wink.gif b/public/pictures/smile/wink.gif
deleted file mode 100644
index 093356f0886d273f742cfcde1f31076942478b5a..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/wink.gif and /dev/null differ
diff --git a/public/pictures/smile/wink2.gif b/public/pictures/smile/wink2.gif
deleted file mode 100644
index 11460963db088dc6313b3fa5ede482d4f1ad1dce..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/wink2.gif and /dev/null differ
diff --git a/public/pictures/smile/wink3.gif b/public/pictures/smile/wink3.gif
deleted file mode 100644
index ab04b93c0e8bfdd5ebd3c8e56d0d38c5dd125699..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/wink3.gif and /dev/null differ
diff --git a/public/pictures/smile/winky.gif b/public/pictures/smile/winky.gif
deleted file mode 100644
index 11460963db088dc6313b3fa5ede482d4f1ad1dce..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/winky.gif and /dev/null differ
diff --git a/public/pictures/smile/wobble.gif b/public/pictures/smile/wobble.gif
deleted file mode 100644
index a1489bd85803000619146309f2f58b01f7bbb5fe..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/wobble.gif and /dev/null differ
diff --git a/public/pictures/smile/wub.gif b/public/pictures/smile/wub.gif
deleted file mode 100644
index 9d124268f074bfc1fa165ef1c73980a3a1f83be0..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/wub.gif and /dev/null differ
diff --git a/public/pictures/smile/wut.gif b/public/pictures/smile/wut.gif
deleted file mode 100644
index fbbe035a8651af0871e1c067825ab0783963a7fc..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/wut.gif and /dev/null differ
diff --git a/public/pictures/smile/xmas.gif b/public/pictures/smile/xmas.gif
deleted file mode 100644
index ebc58c592dd48669b75d7caae60df7166cb94611..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/xmas.gif and /dev/null differ
diff --git a/public/pictures/smile/yawn.gif b/public/pictures/smile/yawn.gif
deleted file mode 100644
index 209faaca38352b7f643dfa70219a6fcc1dd60290..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/yawn.gif and /dev/null differ
diff --git a/public/pictures/smile/yes.gif b/public/pictures/smile/yes.gif
deleted file mode 100644
index 79705a059de7466a832473ea4c93825512232a20..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/yes.gif and /dev/null differ
diff --git a/public/pictures/smile/yoda.gif b/public/pictures/smile/yoda.gif
deleted file mode 100644
index 9ab311c6c5f52780f8c719e6657c2d8418638886..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/yoda.gif and /dev/null differ
diff --git a/public/pictures/smile/zausel.gif b/public/pictures/smile/zausel.gif
deleted file mode 100644
index cdee285c5ee8f3db6e7e0488810bf2b15ec11f0e..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/zausel.gif and /dev/null differ
diff --git a/public/pictures/smile/znaika.gif b/public/pictures/smile/znaika.gif
deleted file mode 100644
index a0f73b35c8b866fa2bac436136549ee727fdd2ec..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/znaika.gif and /dev/null differ
diff --git a/public/pictures/smile/zwinker.gif b/public/pictures/smile/zwinker.gif
deleted file mode 100644
index fa0af3acce9573ee45bc7100aae04599a72a9908..0000000000000000000000000000000000000000
Binary files a/public/pictures/smile/zwinker.gif and /dev/null differ
diff --git a/resources/assets/javascripts/bootstrap/smiley.js b/resources/assets/javascripts/bootstrap/smiley.js
deleted file mode 100644
index d584b1c4041043a3ba975d383933f5b591b6a528..0000000000000000000000000000000000000000
--- a/resources/assets/javascripts/bootstrap/smiley.js
+++ /dev/null
@@ -1,19 +0,0 @@
-$(document).on('click', '.smiley-toggle', function(event) {
-    var element = $(this);
-
-    element.prop('disabled', true).addClass('ajax');
-
-    $.getJSON(element.attr('href')).then(function(json) {
-        var container = $(element)
-            .closest('.ui-dialog-content,#content')
-            .first();
-        $('.messagebox', container).remove();
-        container.prepend(json.message);
-
-        element
-            .toggleClass('favorite', json.state)
-            .removeClass('ajax')
-            .prop('disabled', false);
-    });
-    event.preventDefault();
-});
diff --git a/resources/assets/javascripts/bootstrap/smiley_picker.js b/resources/assets/javascripts/bootstrap/smiley_picker.js
deleted file mode 100644
index 0c5ea35255976a5b2aa140322fcffe53cab92df2..0000000000000000000000000000000000000000
--- a/resources/assets/javascripts/bootstrap/smiley_picker.js
+++ /dev/null
@@ -1,7 +0,0 @@
-// Navigation: Load any url in this very same dialog
-$(document).on('click', '.smiley-picker .navigation a', STUDIP.SmileyPicker.handleNavigationClick);
-
-// Smiley:
-// Execute select handler with selected smiley's code
-// (typically adds the code to a certain textarea)
-$(document).on('click', '.smiley-picker .smiley', STUDIP.SmileyPicker.handleSmileyClick);
diff --git a/resources/assets/javascripts/entry-base.js b/resources/assets/javascripts/entry-base.js
index 9464a9cc4efa40bf70431e71dd9bc561d94de73f..f6f55958fb9ff9b656a481093d26fc3be1996644 100644
--- a/resources/assets/javascripts/entry-base.js
+++ b/resources/assets/javascripts/entry-base.js
@@ -29,7 +29,6 @@ import "./bootstrap/header_magic.js"
 import "./bootstrap/header_navigation.js"
 import "./bootstrap/personal_notifications.js"
 import "./bootstrap/sidebar.js"
-import "./bootstrap/smiley_picker.js"
 import "./bootstrap/dialog.js"
 import "./bootstrap/jsupdater.js"
 import "./bootstrap/files.js"
@@ -53,7 +52,6 @@ import "./bootstrap/qr_code.js"
 import "./bootstrap/startpage.js"
 import "./bootstrap/wiki.js"
 import "./bootstrap/course_wizard.js"
-import "./bootstrap/smiley.js"
 import "./bootstrap/big_image_handler.js"
 import "./bootstrap/opengraph.js"
 import "./bootstrap/actionmenu.js"
diff --git a/resources/assets/javascripts/init.js b/resources/assets/javascripts/init.js
index 68ed726940dd2bfde625b9fba2600ddeeb9c3e5a..e01f84e56630a5a376c2dce6ea62342773075e00 100644
--- a/resources/assets/javascripts/init.js
+++ b/resources/assets/javascripts/init.js
@@ -69,7 +69,6 @@ import Scroll from './lib/scroll.js';
 import Search from './lib/search.js';
 import Sidebar from './lib/sidebar.js';
 import SkipLinks from './lib/skip_links.js';
-import SmileyPicker from './lib/smiley_picker.js';
 import startpage from './lib/startpage.js';
 import Statusgroups from './lib/statusgroups.js';
 import study_area_selection from './lib/study_area_selection.js';
@@ -155,7 +154,6 @@ window.STUDIP = _.assign(window.STUDIP || {}, {
     Search,
     Sidebar,
     SkipLinks,
-    SmileyPicker,
     startpage,
     Statusgroups,
     study_area_selection,
diff --git a/resources/assets/javascripts/lib/forum.js b/resources/assets/javascripts/lib/forum.js
index 1ff2bf50044c537f6a0b02f3624f8c9201ddc419..fbada1f9ed05ff034d4d4437342324dbf18c070a 100644
--- a/resources/assets/javascripts/lib/forum.js
+++ b/resources/assets/javascripts/lib/forum.js
@@ -63,10 +63,6 @@ const Forum = {
         STUDIP.Forum.attachEventHandlers();
     },
 
-    insertSmiley: function(textarea_id, element) {
-        jQuery('textarea[data-textarea=' + textarea_id + ']').insertAtCaret(jQuery(element).data('smiley'));
-    },
-
     approveDelete: function () {
         if (STUDIP.Forum.current_area_id) {
             // hide the area in the dom
diff --git a/resources/assets/javascripts/lib/smiley_picker.js b/resources/assets/javascripts/lib/smiley_picker.js
deleted file mode 100644
index 21d8bc23ba7d73815e51e52221fb76401457a8fc..0000000000000000000000000000000000000000
--- a/resources/assets/javascripts/lib/smiley_picker.js
+++ /dev/null
@@ -1,128 +0,0 @@
-/**
- * smiley-picker.js - Smiley Picker
- *
- * Creates a SmileyPicker object in the global STUDIP namespace with
- * the methods show, hide and toggle.
- * show and toggle accept two arguments "triggerElement, onSelect":
- * - triggerElement is the element that triggered the event
- * - onSelect is a function to be executed once a smiley is selected
- *
- * The picker requires a php based backend under the route
- * "smileys/picker" which renders the html for the picker.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * @author      Jan-Hendrik Willms <tleilax+studip@gmail.com>
- * @license     http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
- * @category    Stud.IP
- */
-import { $gettext } from './gettext.js';
-import Dialog from './dialog.js';
-
-var initialized = false,
-    picker_element = $('<div/>'),
-    select_handler = function() {};
-
-// Loads a url
-function loadURL(url, callback) {
-    $.get(url, function(response) {
-        response = $(response);
-
-        // Add a preload icon for each smiley to avoid a potential flash
-        // of the alternative text
-        $('.smileys img', response).each(function() {
-            var that = this,
-                src = this.src,
-                image = new Image();
-            this.src = STUDIP.ASSETS_URL + 'images/loading-indicator.gif';
-
-            image.onload = image.onerror = function() {
-                that.src = src;
-            };
-            image.src = src;
-        });
-
-        picker_element.html(response);
-
-        if ($.isFunction(callback)) {
-            callback();
-        }
-    });
-}
-
-// Create smiley picker object and bind it to global STUDIP namespace
-const SmileyPicker = {
-    // Show smiley picker, triggered by a specific element and handle
-    // a selected smiley by the passed function
-    show: function(triggerElement, onSelect) {
-        select_handler = onSelect;
-
-        if (!initialized) {
-            // Setup picker dialog
-            picker_element.dialog({
-                autoOpen: false,
-                width: 420, // needs to be hardcoded, unfortunately.
-                dialogClass: 'smiley-picker-dialog',
-                resizable: false,
-                title: $gettext('Smileys'),
-                show: 'fade',
-                hide: 'fade',
-                buttons: [
-                    {
-                        text: $gettext('Zur Gesamtübersicht'),
-                        click: function() {
-                            var url = STUDIP.URLHelper.getURL('dispatch.php/smileys');
-                            picker_element.dialog('close');
-                            Dialog.fromURL(url);
-                        }
-                    },
-                    {
-                        text: $gettext('Schliessen'),
-                        click: function() {
-                            picker_element.dialog('close');
-                        }
-                    }
-                ]
-            });
-
-            // Initial load with spinner next to trigger element
-            $(triggerElement).showAjaxNotification();
-            loadURL(STUDIP.URLHelper.getURL('dispatch.php/smileys/picker'), function() {
-                $(triggerElement).hideAjaxNotification();
-                picker_element.dialog('open');
-            });
-
-            initialized = true;
-        } else {
-            picker_element.dialog('open');
-        }
-    },
-    // Hide smiley picker
-    hide: function() {
-        picker_element.dialog('close');
-    },
-    // Toggle smiley picker display (pass the same arguments as for show)
-    toggle: function(triggerElement, onSelect) {
-        if (initialized && picker_element.dialog('isOpen')) {
-            SmileyPicker.hide();
-        } else {
-            SmileyPicker.show(triggerElement, onSelect);
-        }
-    },
-
-    handleNavigationClick: function(event) {
-        loadURL(this.href);
-        return false;
-    },
-
-    handleSmileyClick: function(event) {
-        select_handler($(this).data().code);
-        picker_element.dialog('close');
-        return false;
-    }
-};
-
-export default SmileyPicker;
diff --git a/resources/assets/javascripts/lib/toolbar_buttonset.js b/resources/assets/javascripts/lib/toolbar_buttonset.js
index 5bb211fa63a98ecd0d12d5a793b887fc4e506822..cd92f545518c63348d46949d0e05503edddd7da6 100644
--- a/resources/assets/javascripts/lib/toolbar_buttonset.js
+++ b/resources/assets/javascripts/lib/toolbar_buttonset.js
@@ -1,5 +1,3 @@
-import SmileyPicker from './smiley_picker.js';
-
 // Creates a wrapper function that wraps the passed string using the
 // passed prefix and suffix. If the suffix is omitted, it will be replaced
 // by the prefix.
@@ -54,14 +52,6 @@ const buttonSet = {
         }
     },
     right: {
-        smilies: {
-            label: ':)',
-            evaluate: function(string, textarea, button) {
-                SmileyPicker.toggle(button, function(code) {
-                    textarea.replaceSelection(code + ' ');
-                });
-            }
-        },
         help: {
             label: '?',
             evaluate: function() {
diff --git a/resources/assets/stylesheets/scss/forum.scss b/resources/assets/stylesheets/scss/forum.scss
index f46383c7ee13d63f10a658f5841f97d7914eefab..0638330c10378460d153ec78539d400efe879c6b 100644
--- a/resources/assets/stylesheets/scss/forum.scss
+++ b/resources/assets/stylesheets/scss/forum.scss
@@ -329,11 +329,6 @@ html.no-js #forum {
         }
     }
 
-    .smiley_favorites {
-        text-align: center;
-        padding-right: 5px;
-    }
-
     a.tooltip2 {
       color: black;
       cursor: help;
diff --git a/resources/assets/stylesheets/scss/smileys.scss b/resources/assets/stylesheets/scss/smileys.scss
deleted file mode 100644
index e6bc47c39849770c3125c0a1faa1e0654f678d08..0000000000000000000000000000000000000000
--- a/resources/assets/stylesheets/scss/smileys.scss
+++ /dev/null
@@ -1,193 +0,0 @@
-.smiley-tabs {
-    display: flex;
-    justify-content: space-between;
-    margin: 0 0 0.5em;
-    line-height: 1.8em;
-    width: 100%;
-
-    &, li {
-        list-style: none;
-        padding: 0;
-    }
-
-    li {
-        flex-grow: 1;
-        display: inline-block;
-        float: none;
-        margin: 0;
-        white-space: nowrap;
-
-        &.favorites a {
-            @include icon(before, smiley, info_alt);
-        }
-
-        &.favorites.current a {
-            @include icon(before, smiley, info);
-        }
-        &.current {
-            padding-top: 0;
-            a, span.quiet {
-                color: $base-color;
-            }
-        }
-    }
-
-    a {
-        display: block;
-        padding-left: 0;
-        padding-right: 0;
-        text-align: center;
-        color: $black
-    }
-}
-
-.smiley-container {
-    border-collapse: collapse;
-    width: 100%;
-
-    > tbody > tr > td {
-        padding: 0 1em 0 0;
-
-        &:last-child {
-            padding-right: 0;
-        }
-    }
-}
-
-.smiley-container, .smiley-column {
-    table-layout: fixed;
-}
-
-.smiley-column {
-    margin-right: 1em;
-
-    &:last-child {
-        margin-right: 0;
-    }
-}
-
-.smiley-icon {
-    img {
-        height: auto;
-        max-width: 100%;
-        width: auto;
-    }
-}
-
-.smiley-toggle {
-    @include square(16px);
-    @include hide-text();
-    @include background-icon(checkbox-unchecked, clickable);
-    background-position: center;
-    background-repeat: no-repeat;
-    display: inline-block;
-    vertical-align: middle;
-
-    &.favorite {
-        @include background-icon(checkbox-checked, clickable);
-    }
-
-    &.ajax {
-        background-image: url("#{$image-path}/loading-indicator.svg");
-    }
-}
-
-.smiley-statistics {
-    margin: 0;
-    padding: 0;
-
-    dt {
-        clear: left;
-        float: left;
-        padding-right: 0.5em;
-
-        &::after {
-            content: ':';
-        }
-    }
-
-    dd {
-        font-weight: 700;
-        margin: 0;
-        text-align: right;
-    }
-}
-
-.smiley-picker {
-    width: 420px;
-
-    .smileys {
-        text-align: center;
-        width: 100%;
-        padding: 5px 0;
-    }
-
-    .smiley, .empty {
-        display: inline-block;
-        height: 80px;
-        vertical-align: middle;
-        width: 80px;
-    }
-
-    .smiley {
-        box-sizing: border-box;
-        cursor: pointer;
-        max-height: 80px;
-        max-width: 80px;
-        text-align: center;
-
-        // see http://css-tricks.com/centering-in-the-unknown/
-        &:before {
-            content: '';
-            display: inline-block;
-            height: 100%;
-            vertical-align: middle;
-            margin-right: -0.25em;
-        }
-
-        img {
-            vertical-align: middle;
-            max-height: 76px;
-            max-width: 72px;
-            margin-right: 0.25em;
-        }
-
-        &:hover {
-            background-color: fade($active-color, 10%);
-            border-radius: 20px;
-            box-shadow: 0 -1px 4px fade($active-color, 10%), 0 2px 5px #888;
-        }
-    }
-
-    .navigation {
-        border-collapse: collapse;
-        width: 100%;
-
-        img {
-            vertical-align: text-top;
-        }
-
-        td {
-            padding: 2px;
-        }
-
-        &.top td {
-            border-bottom: 1px solid $brand-color-dark;
-        }
-
-        &.bottom td {
-            border-top: 1px solid $brand-color-dark;
-        }
-
-        .active a {
-            color: $active-color;
-            font-weight: bold;
-        }
-    }
-}
-
-.smiley-picker-dialog {
-    .ui-dialog-content {
-        padding: 0;
-    }
-}
diff --git a/resources/assets/stylesheets/studip.scss b/resources/assets/stylesheets/studip.scss
index fb38beb1d87105f904ea02f3f12878efdb396791..5a462db27420bd521f3799034b9e293b6c2f283b 100644
--- a/resources/assets/stylesheets/studip.scss
+++ b/resources/assets/stylesheets/studip.scss
@@ -87,7 +87,6 @@
 @import "scss/skiplinks";
 @import "scss/start";
 @import "scss/scroll-to-top";
-@import "scss/smileys";
 @import "scss/statusgroups";
 @import "scss/study-area-selection";
 @import "scss/studygroup";
diff --git a/tests/unit/lib/VisualTest.php b/tests/unit/lib/VisualTest.php
index d5c0ba9e828daecb8d7af4ccbcfa07249a6e5f2c..dfa2945bf6dc429607732593860570ec5b4a12d1 100644
--- a/tests/unit/lib/VisualTest.php
+++ b/tests/unit/lib/VisualTest.php
@@ -13,7 +13,6 @@ require_once 'lib/models/SimpleORMap.class.php';
 require_once 'lib/models/OpenGraphURL.class.php';
 require_once 'lib/visual.inc.php';
 require_once 'lib/classes/Config.class.php';
-require_once 'lib/classes/SmileyFormat.php';
 
 class VisualFunctionsTest extends \Codeception\Test\Unit
 {
@@ -26,15 +25,9 @@ class VisualFunctionsTest extends \Codeception\Test\Unit
 
         Config::set(new Config($config));
 
-        $GLOBALS['SMILEY_NO_DB'] = true;
         $GLOBALS['SYMBOL_SHORT'] = [];
     }
 
-    public function tearDown(): void
-    {
-        $GLOBALS['SMILEY_NO_DB'] = false;
-    }
-
     public function testFormatReady()
     {
         $expected = '<strong>some code</strong>';