Normalize App parameter declaration (mod folder, 2 out of 3)
This commit is contained in:
parent
ee39aba490
commit
f92918f471
42 changed files with 133 additions and 133 deletions
|
@ -10,7 +10,7 @@ require_once('include/tags.php');
|
|||
require_once('include/threads.php');
|
||||
require_once('include/Probe.php');
|
||||
|
||||
function photos_init(App &$a) {
|
||||
function photos_init(App $a) {
|
||||
|
||||
if ($a->argc > 1)
|
||||
auto_redir($a, $a->argv[1]);
|
||||
|
@ -112,7 +112,7 @@ function photos_init(App &$a) {
|
|||
|
||||
|
||||
|
||||
function photos_post(App &$a) {
|
||||
function photos_post(App $a) {
|
||||
|
||||
logger('mod-photos: photos_post: begin' , LOGGER_DEBUG);
|
||||
|
||||
|
@ -945,7 +945,7 @@ function photos_post(App &$a) {
|
|||
|
||||
|
||||
|
||||
function photos_content(App &$a) {
|
||||
function photos_content(App $a) {
|
||||
|
||||
// URLs:
|
||||
// photos/name
|
||||
|
@ -1307,7 +1307,7 @@ function photos_content(App &$a) {
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
* Display one photo
|
||||
*/
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue