@@ -62,7 +62,7 @@ |
||
62 | 62 | $sXML .= '<lastmod>' . xmlentities(date('c', $dLastMod)) . '</lastmod>'; |
63 | 63 | $sXML .= '<changefreq>' . xmlentities($sChangeFreq) . '</changefreq>'; |
64 | 64 | $sXML .= '<priority>' . xmlentities($nPriority) . '</priority>'; |
65 | - $sXML .= '</url>'."\n"; |
|
65 | + $sXML .= '</url>' . "\n"; |
|
66 | 66 | |
67 | 67 | $this->writeInternal($sXML); |
68 | 68 | } |
@@ -1591,7 +1591,7 @@ discard block |
||
1591 | 1591 | global $opt; |
1592 | 1592 | |
1593 | 1593 | // get number of possible rates |
1594 | - return (int) floor($this->getStatFound() * $opt['logic']['rating']['percentageOfFounds'] / 100); |
|
1594 | + return (int)floor($this->getStatFound() * $opt['logic']['rating']['percentageOfFounds'] / 100); |
|
1595 | 1595 | } |
1596 | 1596 | |
1597 | 1597 | public function allowRatings() |
@@ -1605,7 +1605,7 @@ discard block |
||
1605 | 1605 | global $opt; |
1606 | 1606 | $rating = $opt['logic']['rating']; |
1607 | 1607 | |
1608 | - return (int) ($rating['percentageOfFounds'] - ($this->getStatFound() % $rating['percentageOfFounds'])); |
|
1608 | + return (int)($rating['percentageOfFounds'] - ($this->getStatFound() % $rating['percentageOfFounds'])); |
|
1609 | 1609 | } |
1610 | 1610 | |
1611 | 1611 | public function showStatFounds() |
@@ -22,7 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * @param string $okapiVarDir |
24 | 24 | */ |
25 | - public function __construct($okapiVarDir = __DIR__.'/../../../var/okapi') |
|
25 | + public function __construct($okapiVarDir = __DIR__ . '/../../../var/okapi') |
|
26 | 26 | { |
27 | 27 | $this->okapiVarDir = $okapiVarDir; |
28 | 28 | } |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | $tpl->menuitem = MNU_CACHES_ADDTOLIST; |
10 | 10 | |
11 | 11 | $login->verify(); |
12 | -if ($login->userid == 0) { |
|
12 | +if ($login->userid == 0) { |
|
13 | 13 | $tpl->redirect_login(); |
14 | 14 | } |
15 | 15 | |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | $default_list = isset($_REQUEST['listid']) ? (int)$_REQUEST['listid'] : cachelist::getMyLastAddedToListId(); |
33 | 33 | |
34 | 34 | if (isset($_REQUEST['save'], $_REQUEST['listid'])) { |
35 | - $listId = (int) $_REQUEST['listid']; |
|
35 | + $listId = (int)$_REQUEST['listid']; |
|
36 | 36 | if ($listId === 0) { |
37 | 37 | $cacheList = new cachelist(ID_NEW, $login->userid); |
38 | 38 | $name_error = $cacheList->setNameAndVisibility($newListName, $newListPublic ? 2 : 0); |
@@ -14,11 +14,11 @@ discard block |
||
14 | 14 | } |
15 | 15 | |
16 | 16 | $action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'listbyuser'; |
17 | -$cacheId = isset($_REQUEST['cacheid']) ? (int) $_REQUEST['cacheid'] : 0; |
|
17 | +$cacheId = isset($_REQUEST['cacheid']) ? (int)$_REQUEST['cacheid'] : 0; |
|
18 | 18 | $tpl->assign('action', $action); |
19 | 19 | $tpl->assign('error', ''); |
20 | 20 | if (isset($_REQUEST['cacheid'])) { |
21 | - $tpl->assign('cacheid', (int) $_REQUEST['cacheid']); |
|
21 | + $tpl->assign('cacheid', (int)$_REQUEST['cacheid']); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | if ($action === 'listbycache') { |
@@ -26,14 +26,14 @@ discard block |
||
26 | 26 | } elseif ($action === 'add') { |
27 | 27 | $tpl->assign('action', 'listbycache'); |
28 | 28 | |
29 | - $tou = isset($_REQUEST['tou']) ? (int) $_REQUEST['tou'] : 0; |
|
30 | - $submit = isset($_REQUEST['submit']) ? (int) $_REQUEST['submit'] : 0; |
|
29 | + $tou = isset($_REQUEST['tou']) ? (int)$_REQUEST['tou'] : 0; |
|
30 | + $submit = isset($_REQUEST['submit']) ? (int)$_REQUEST['submit'] : 0; |
|
31 | 31 | |
32 | 32 | $username = isset($_REQUEST['username']) ? $_REQUEST['username'] : ''; |
33 | 33 | $tpl->assign('adoptusername', $username); |
34 | 34 | |
35 | 35 | if ($submit === 1) { |
36 | - $userId = (int) sql_value("SELECT `user_id` FROM `user` WHERE `username`='&1'", 0, $username); |
|
36 | + $userId = (int)sql_value("SELECT `user_id` FROM `user` WHERE `username`='&1'", 0, $username); |
|
37 | 37 | if ($userId === 0) { |
38 | 38 | $tpl->assign('error', 'userunknown'); |
39 | 39 | } elseif ($tou !== 1) { |
@@ -45,11 +45,11 @@ discard block |
||
45 | 45 | |
46 | 46 | listRequestsByCacheId($cacheId); |
47 | 47 | } elseif ($action === 'cancel') { |
48 | - $userId = isset($_REQUEST['userid']) ? (int) $_REQUEST['userid']: 0; |
|
48 | + $userId = isset($_REQUEST['userid']) ? (int)$_REQUEST['userid'] : 0; |
|
49 | 49 | cancelRequest($cacheId, $userId); |
50 | 50 | } elseif ($action === 'commit') { |
51 | - $submit = isset($_REQUEST['submit']) ? (int) $_REQUEST['submit'] : 0; |
|
52 | - $tou = isset($_REQUEST['tou']) ? (int) $_REQUEST['tou'] : 0; |
|
51 | + $submit = isset($_REQUEST['submit']) ? (int)$_REQUEST['submit'] : 0; |
|
52 | + $tou = isset($_REQUEST['tou']) ? (int)$_REQUEST['tou'] : 0; |
|
53 | 53 | |
54 | 54 | if ($submit === 1 && $tou === 1) { |
55 | 55 | commitRequest($cacheId); |