Code Duplication    Length = 5-5 lines in 2 locations

public-album.php 1 location

@@ 30-34 (lines=5) @@
27
} else {
28
    $catId = (int)$_GET['id'];
29
}
30
if (!isset($_GET['start'])) {
31
    $start = 0;
32
} else {
33
    $start = (int)$_GET['start'];
34
}
35
36
// HACK BLUETEEN TO SORT PHOTO BY USERS
37
//photo_date - photo_title - photo_hits - photo_rating

public-useralbum.php 1 location

@@ 30-34 (lines=5) @@
27
} else {
28
    $userId = (int)$_GET['id'];
29
}
30
if (!isset($_GET['start'])) {
31
    $start = 0;
32
} else {
33
    $start = (int)$_GET['start'];
34
}
35
36
$ajaxeffect = $xoopsModuleConfig['use_ajax_effects'];
37
$xoopsTpl->assign('use_ajax_effects', $ajaxeffect);