mirror of
https://github.com/friendica/friendica
synced 2024-11-14 17:02:54 +00:00
7 lines
150 B
PHP
7 lines
150 B
PHP
|
<?php
|
||
|
|
||
|
function pretheme_init(&$a) {
|
||
|
if($_REQUEST['theme']) echo json_encode(array('img' => get_theme_screenshot($_REQUEST['theme'])));
|
||
|
killme();
|
||
|
}
|