@@ -62,7 +62,7 @@ |
||
62 | 62 | * @param string $pass Password |
63 | 63 | * |
64 | 64 | * @return boolean |
65 | - */ |
|
65 | + */ |
|
66 | 66 | public function changePassword($login, $pass) |
67 | 67 | { |
68 | 68 | return true; |
@@ -57,7 +57,7 @@ |
||
57 | 57 | * @param string $login Loginname |
58 | 58 | * @param string $pass Password |
59 | 59 | * @return boolean |
60 | - */ |
|
60 | + */ |
|
61 | 61 | public function changePassword($login, $pass); |
62 | 62 | |
63 | 63 | /** |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | public function __construct(PMF_Configuration $config) |
64 | 64 | { |
65 | 65 | $this->_config = $config; |
66 | - $this->table_name = PMF_Db::getTablePrefix() . "faqstopwords"; |
|
66 | + $this->table_name = PMF_Db::getTablePrefix()."faqstopwords"; |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | $retval = []; |
207 | 207 | |
208 | 208 | if ($wordsOnly) { |
209 | - while(($row = $this->_config->getDb()->fetchObject($result)) == true) { |
|
209 | + while (($row = $this->_config->getDb()->fetchObject($result)) == true) { |
|
210 | 210 | $retval[] = $row->stopword; |
211 | 211 | } |
212 | 212 | } else { |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | private function getBannedWords() |
287 | 287 | { |
288 | 288 | $bannedTrimmedWords = []; |
289 | - $bannedWordsFile = PMF_INCLUDE_DIR . '/blockedwords.txt'; |
|
289 | + $bannedWordsFile = PMF_INCLUDE_DIR.'/blockedwords.txt'; |
|
290 | 290 | $bannedWords = []; |
291 | 291 | |
292 | 292 | // Read the dictionary |
@@ -59,18 +59,18 @@ discard block |
||
59 | 59 | */ |
60 | 60 | public function getImage($email, $params = []) |
61 | 61 | { |
62 | - $imageUrl = $this->getUrl() . 'avatar/' . $this->getHash($email); |
|
62 | + $imageUrl = $this->getUrl().'avatar/'.$this->getHash($email); |
|
63 | 63 | |
64 | 64 | $opts = []; |
65 | 65 | |
66 | 66 | if (isset($params['default'])) { |
67 | - $opts[] = 'default='. $params['default']; |
|
67 | + $opts[] = 'default='.$params['default']; |
|
68 | 68 | } |
69 | 69 | if (isset($params['size'])) { |
70 | - $opts[] = 'size='. $params['size']; |
|
70 | + $opts[] = 'size='.$params['size']; |
|
71 | 71 | } |
72 | 72 | if (isset($params['rating'])) { |
73 | - $opts[] = 'rating='. $params['rating']; |
|
73 | + $opts[] = 'rating='.$params['rating']; |
|
74 | 74 | } |
75 | 75 | if (isset($params['force_default']) && $params['force_default'] === true) { |
76 | 76 | $opts[] = 'forcedefault=y'; |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $params['class'] = ''; |
80 | 80 | } |
81 | 81 | |
82 | - $gravatar = $imageUrl . (sizeof($opts) > 0 ? '?' . implode($opts, '&') : false); |
|
82 | + $gravatar = $imageUrl.(sizeof($opts) > 0 ? '?'.implode($opts, '&') : false); |
|
83 | 83 | |
84 | 84 | return sprintf( |
85 | 85 | '<img src="%s" class="%s" alt="Gravatar">', |
@@ -60,9 +60,9 @@ discard block |
||
60 | 60 | } else { |
61 | 61 | $enableRelevance = $this->_config->get('search.enableRelevance'); |
62 | 62 | |
63 | - $columns = $this->getResultColumns(); |
|
63 | + $columns = $this->getResultColumns(); |
|
64 | 64 | $columns .= ($enableRelevance) ? $this->getMatchingColumnsAsResult($searchTerm) : ''; |
65 | - $orderBy = ($enableRelevance) ? 'ORDER BY ' . $this->getMatchingOrder() . ' DESC' : ''; |
|
65 | + $orderBy = ($enableRelevance) ? 'ORDER BY '.$this->getMatchingOrder().' DESC' : ''; |
|
66 | 66 | $chars = array( |
67 | 67 | "\xe2\x80\x98", |
68 | 68 | "\xe2\x80\x99", |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | $this->_config->getDb()->escape($searchterm), |
141 | 141 | substr(strstr($matchColumn, '.'), 1)); |
142 | 142 | |
143 | - $resultColumns .= ', ' . $column; |
|
143 | + $resultColumns .= ', '.$column; |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | return $resultColumns; |
@@ -160,11 +160,11 @@ discard block |
||
160 | 160 | $order = ''; |
161 | 161 | |
162 | 162 | foreach ($list as $field) { |
163 | - $string = '(rel_' . $field . '*' . $count .')'; |
|
163 | + $string = '(rel_'.$field.'*'.$count.')'; |
|
164 | 164 | if (empty($order)) { |
165 | 165 | $order .= $string; |
166 | 166 | } else { |
167 | - $order .= '+' . $string; |
|
167 | + $order .= '+'.$string; |
|
168 | 168 | } |
169 | 169 | $count--; |
170 | 170 | } |
@@ -1,33 +1,33 @@ |
||
1 | 1 | <?php |
2 | 2 | // core font definition file for TCPDF (www.tcpdf.org) |
3 | -$type='core'; |
|
4 | -$dw=556; |
|
5 | -$cw=array(0=>278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278, |
|
6 | -10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278, |
|
7 | -20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278, |
|
8 | -30=>278,31=>278,32=>278,33=>278,34=>355,35=>556,36=>556,37=>889,38=>667,39=>191, |
|
9 | -40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556, |
|
10 | -50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>278,59=>278, |
|
11 | -60=>584,61=>584,62=>584,63=>556,64=>1015,65=>667,66=>667,67=>722,68=>722,69=>667, |
|
12 | -70=>611,71=>778,72=>722,73=>278,74=>500,75=>667,76=>556,77=>833,78=>722,79=>778, |
|
13 | -80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667, |
|
14 | -90=>611,91=>278,92=>278,93=>278,94=>469,95=>556,96=>333,97=>556,98=>556,99=>500, |
|
15 | -100=>556,101=>556,102=>278,103=>556,104=>556,105=>222,106=>222,107=>500,108=>222, |
|
16 | -109=>833,110=>556,111=>556,112=>556,113=>556,114=>333,115=>500,116=>278,117=>556, |
|
17 | -118=>500,119=>722,120=>500,121=>500,122=>500,123=>334,124=>260,125=>334,126=>584, |
|
18 | -127=>350,128=>556,129=>350,130=>222,131=>556,132=>333,133=>1000,134=>556,135=>556, |
|
19 | -136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350, |
|
20 | -145=>222,146=>222,147=>333,148=>333,149=>350,150=>556,151=>1000,152=>333,153=>1000, |
|
21 | -154=>500,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556, |
|
22 | -163=>556,164=>556,165=>556,166=>260,167=>556,168=>333,169=>737,170=>370,171=>556, |
|
23 | -172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333, |
|
24 | -181=>556,182=>537,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834, |
|
25 | -190=>834,191=>611,192=>667,193=>667,194=>667,195=>667,196=>667,197=>667,198=>1000, |
|
26 | -199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278, |
|
27 | -208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778, |
|
28 | -217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556, |
|
29 | -226=>556,227=>556,228=>556,229=>556,230=>889,231=>500,232=>556,233=>556,234=>556, |
|
30 | -235=>556,236=>278,237=>278,238=>278,239=>278,240=>556,241=>556,242=>556,243=>556, |
|
31 | -244=>556,245=>556,246=>556,247=>584,248=>611,249=>556,250=>556,251=>556,252=>556, |
|
32 | -253=>500,254=>556,255=>500); |
|
3 | +$type = 'core'; |
|
4 | +$dw = 556; |
|
5 | +$cw = array(0=>278, 1=>278, 2=>278, 3=>278, 4=>278, 5=>278, 6=>278, 7=>278, 8=>278, 9=>278, |
|
6 | +10=>278, 11=>278, 12=>278, 13=>278, 14=>278, 15=>278, 16=>278, 17=>278, 18=>278, 19=>278, |
|
7 | +20=>278, 21=>278, 22=>278, 23=>278, 24=>278, 25=>278, 26=>278, 27=>278, 28=>278, 29=>278, |
|
8 | +30=>278, 31=>278, 32=>278, 33=>278, 34=>355, 35=>556, 36=>556, 37=>889, 38=>667, 39=>191, |
|
9 | +40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278, 47=>278, 48=>556, 49=>556, |
|
10 | +50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>278, 59=>278, |
|
11 | +60=>584, 61=>584, 62=>584, 63=>556, 64=>1015, 65=>667, 66=>667, 67=>722, 68=>722, 69=>667, |
|
12 | +70=>611, 71=>778, 72=>722, 73=>278, 74=>500, 75=>667, 76=>556, 77=>833, 78=>722, 79=>778, |
|
13 | +80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, |
|
14 | +90=>611, 91=>278, 92=>278, 93=>278, 94=>469, 95=>556, 96=>333, 97=>556, 98=>556, 99=>500, |
|
15 | +100=>556, 101=>556, 102=>278, 103=>556, 104=>556, 105=>222, 106=>222, 107=>500, 108=>222, |
|
16 | +109=>833, 110=>556, 111=>556, 112=>556, 113=>556, 114=>333, 115=>500, 116=>278, 117=>556, |
|
17 | +118=>500, 119=>722, 120=>500, 121=>500, 122=>500, 123=>334, 124=>260, 125=>334, 126=>584, |
|
18 | +127=>350, 128=>556, 129=>350, 130=>222, 131=>556, 132=>333, 133=>1000, 134=>556, 135=>556, |
|
19 | +136=>333, 137=>1000, 138=>667, 139=>333, 140=>1000, 141=>350, 142=>611, 143=>350, 144=>350, |
|
20 | +145=>222, 146=>222, 147=>333, 148=>333, 149=>350, 150=>556, 151=>1000, 152=>333, 153=>1000, |
|
21 | +154=>500, 155=>333, 156=>944, 157=>350, 158=>500, 159=>667, 160=>278, 161=>333, 162=>556, |
|
22 | +163=>556, 164=>556, 165=>556, 166=>260, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, |
|
23 | +172=>584, 173=>333, 174=>737, 175=>333, 176=>400, 177=>584, 178=>333, 179=>333, 180=>333, |
|
24 | +181=>556, 182=>537, 183=>278, 184=>333, 185=>333, 186=>365, 187=>556, 188=>834, 189=>834, |
|
25 | +190=>834, 191=>611, 192=>667, 193=>667, 194=>667, 195=>667, 196=>667, 197=>667, 198=>1000, |
|
26 | +199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, |
|
27 | +208=>722, 209=>722, 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, |
|
28 | +217=>722, 218=>722, 219=>722, 220=>722, 221=>667, 222=>667, 223=>611, 224=>556, 225=>556, |
|
29 | +226=>556, 227=>556, 228=>556, 229=>556, 230=>889, 231=>500, 232=>556, 233=>556, 234=>556, |
|
30 | +235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>556, 241=>556, 242=>556, 243=>556, |
|
31 | +244=>556, 245=>556, 246=>556, 247=>584, 248=>611, 249=>556, 250=>556, 251=>556, 252=>556, |
|
32 | +253=>500, 254=>556, 255=>500); |
|
33 | 33 | ?> |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | - // core font definition file for TCPDF (www.tcpdf.org) |
|
2 | + // core font definition file for TCPDF (www.tcpdf.org) |
|
3 | 3 | $type='core'; |
4 | 4 | $dw=556; |
5 | 5 | $cw=array(0=>278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278, |
@@ -1,33 +1,33 @@ |
||
1 | 1 | <?php |
2 | 2 | // core font definition file for TCPDF (www.tcpdf.org) |
3 | -$type='core'; |
|
4 | -$dw=556; |
|
5 | -$cw=array(0=>278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278, |
|
6 | -10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278, |
|
7 | -20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278, |
|
8 | -30=>278,31=>278,32=>278,33=>333,34=>474,35=>556,36=>556,37=>889,38=>722,39=>238, |
|
9 | -40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556, |
|
10 | -50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>333,59=>333, |
|
11 | -60=>584,61=>584,62=>584,63=>611,64=>975,65=>722,66=>722,67=>722,68=>722,69=>667, |
|
12 | -70=>611,71=>778,72=>722,73=>278,74=>556,75=>722,76=>611,77=>833,78=>722,79=>778, |
|
13 | -80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667, |
|
14 | -90=>611,91=>333,92=>278,93=>333,94=>584,95=>556,96=>333,97=>556,98=>611,99=>556, |
|
15 | -100=>611,101=>556,102=>333,103=>611,104=>611,105=>278,106=>278,107=>556,108=>278, |
|
16 | -109=>889,110=>611,111=>611,112=>611,113=>611,114=>389,115=>556,116=>333,117=>611, |
|
17 | -118=>556,119=>778,120=>556,121=>556,122=>500,123=>389,124=>280,125=>389,126=>584, |
|
18 | -127=>350,128=>556,129=>350,130=>278,131=>556,132=>500,133=>1000,134=>556,135=>556, |
|
19 | -136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350, |
|
20 | -145=>278,146=>278,147=>500,148=>500,149=>350,150=>556,151=>1000,152=>333,153=>1000, |
|
21 | -154=>556,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556, |
|
22 | -163=>556,164=>556,165=>556,166=>280,167=>556,168=>333,169=>737,170=>370,171=>556, |
|
23 | -172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333, |
|
24 | -181=>611,182=>556,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834, |
|
25 | -190=>834,191=>611,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>1000, |
|
26 | -199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278, |
|
27 | -208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778, |
|
28 | -217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556, |
|
29 | -226=>556,227=>556,228=>556,229=>556,230=>889,231=>556,232=>556,233=>556,234=>556, |
|
30 | -235=>556,236=>278,237=>278,238=>278,239=>278,240=>611,241=>611,242=>611,243=>611, |
|
31 | -244=>611,245=>611,246=>611,247=>584,248=>611,249=>611,250=>611,251=>611,252=>611, |
|
32 | -253=>556,254=>611,255=>556); |
|
3 | +$type = 'core'; |
|
4 | +$dw = 556; |
|
5 | +$cw = array(0=>278, 1=>278, 2=>278, 3=>278, 4=>278, 5=>278, 6=>278, 7=>278, 8=>278, 9=>278, |
|
6 | +10=>278, 11=>278, 12=>278, 13=>278, 14=>278, 15=>278, 16=>278, 17=>278, 18=>278, 19=>278, |
|
7 | +20=>278, 21=>278, 22=>278, 23=>278, 24=>278, 25=>278, 26=>278, 27=>278, 28=>278, 29=>278, |
|
8 | +30=>278, 31=>278, 32=>278, 33=>333, 34=>474, 35=>556, 36=>556, 37=>889, 38=>722, 39=>238, |
|
9 | +40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278, 47=>278, 48=>556, 49=>556, |
|
10 | +50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>333, 59=>333, |
|
11 | +60=>584, 61=>584, 62=>584, 63=>611, 64=>975, 65=>722, 66=>722, 67=>722, 68=>722, 69=>667, |
|
12 | +70=>611, 71=>778, 72=>722, 73=>278, 74=>556, 75=>722, 76=>611, 77=>833, 78=>722, 79=>778, |
|
13 | +80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, |
|
14 | +90=>611, 91=>333, 92=>278, 93=>333, 94=>584, 95=>556, 96=>333, 97=>556, 98=>611, 99=>556, |
|
15 | +100=>611, 101=>556, 102=>333, 103=>611, 104=>611, 105=>278, 106=>278, 107=>556, 108=>278, |
|
16 | +109=>889, 110=>611, 111=>611, 112=>611, 113=>611, 114=>389, 115=>556, 116=>333, 117=>611, |
|
17 | +118=>556, 119=>778, 120=>556, 121=>556, 122=>500, 123=>389, 124=>280, 125=>389, 126=>584, |
|
18 | +127=>350, 128=>556, 129=>350, 130=>278, 131=>556, 132=>500, 133=>1000, 134=>556, 135=>556, |
|
19 | +136=>333, 137=>1000, 138=>667, 139=>333, 140=>1000, 141=>350, 142=>611, 143=>350, 144=>350, |
|
20 | +145=>278, 146=>278, 147=>500, 148=>500, 149=>350, 150=>556, 151=>1000, 152=>333, 153=>1000, |
|
21 | +154=>556, 155=>333, 156=>944, 157=>350, 158=>500, 159=>667, 160=>278, 161=>333, 162=>556, |
|
22 | +163=>556, 164=>556, 165=>556, 166=>280, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, |
|
23 | +172=>584, 173=>333, 174=>737, 175=>333, 176=>400, 177=>584, 178=>333, 179=>333, 180=>333, |
|
24 | +181=>611, 182=>556, 183=>278, 184=>333, 185=>333, 186=>365, 187=>556, 188=>834, 189=>834, |
|
25 | +190=>834, 191=>611, 192=>722, 193=>722, 194=>722, 195=>722, 196=>722, 197=>722, 198=>1000, |
|
26 | +199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, |
|
27 | +208=>722, 209=>722, 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, |
|
28 | +217=>722, 218=>722, 219=>722, 220=>722, 221=>667, 222=>667, 223=>611, 224=>556, 225=>556, |
|
29 | +226=>556, 227=>556, 228=>556, 229=>556, 230=>889, 231=>556, 232=>556, 233=>556, 234=>556, |
|
30 | +235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>611, 241=>611, 242=>611, 243=>611, |
|
31 | +244=>611, 245=>611, 246=>611, 247=>584, 248=>611, 249=>611, 250=>611, 251=>611, 252=>611, |
|
32 | +253=>556, 254=>611, 255=>556); |
|
33 | 33 | ?> |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | - // core font definition file for TCPDF (www.tcpdf.org) |
|
2 | + // core font definition file for TCPDF (www.tcpdf.org) |
|
3 | 3 | $type='core'; |
4 | 4 | $dw=556; |
5 | 5 | $cw=array(0=>278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278, |
@@ -19,10 +19,10 @@ discard block |
||
19 | 19 | |
20 | 20 | if (!defined('IS_VALID_PHPMYFAQ')) { |
21 | 21 | $protocol = 'http'; |
22 | - if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON'){ |
|
22 | + if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') { |
|
23 | 23 | $protocol = 'https'; |
24 | 24 | } |
25 | - header('Location: ' . $protocol . '://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['SCRIPT_NAME'])); |
|
25 | + header('Location: '.$protocol.'://'.$_SERVER['HTTP_HOST'].dirname($_SERVER['SCRIPT_NAME'])); |
|
26 | 26 | exit(); |
27 | 27 | } |
28 | 28 | |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | // @todo handle the exception |
33 | 33 | } |
34 | 34 | |
35 | -$page = PMF_Filter::filterInput(INPUT_GET, 'page' , FILTER_VALIDATE_INT, 1); |
|
35 | +$page = PMF_Filter::filterInput(INPUT_GET, 'page', FILTER_VALIDATE_INT, 1); |
|
36 | 36 | |
37 | 37 | $glossary = new PMF_Glossary($faqConfig); |
38 | 38 | $glossaryItems = $glossary->getAllGlossaryItems(); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | if (0 < $numItems) { |
58 | 58 | |
59 | 59 | $output = []; |
60 | - $visibleItems = array_slice($glossaryItems, ($page - 1) * $itemsPerPage, $itemsPerPage); |
|
60 | + $visibleItems = array_slice($glossaryItems, ($page - 1)*$itemsPerPage, $itemsPerPage); |
|
61 | 61 | |
62 | 62 | foreach ($visibleItems as $item) { |
63 | 63 | $output['item'][] = $item['item']; |
@@ -661,14 +661,14 @@ |
||
661 | 661 | $PMF_LANG['ad_entry_visibility'] = 'Objavi?'; |
662 | 662 | |
663 | 663 | // added v2.0.0 - 2006-01-02 by Lars |
664 | -$PMF_LANG['ad_user_error_password'] = "Molimo unesite lozinku. "; |
|
665 | -$PMF_LANG['ad_user_error_passwordsDontMatch'] = "Lozinke se ne poklapaju. "; |
|
666 | -$PMF_LANG['ad_user_error_loginInvalid'] = "Unešeno korisničko ime nije nađeno."; |
|
667 | -$PMF_LANG['ad_user_error_noEmail'] = "Unesite važeću email adresu. "; |
|
668 | -$PMF_LANG['ad_user_error_noRealName'] = "Unesite Vaše pravo ime. "; |
|
669 | -$PMF_LANG['ad_user_error_delete'] = "Korisnički nalog ne može biti izbrisan. "; |
|
670 | -$PMF_LANG['ad_user_error_noId'] = "Nije priložen ID. "; |
|
671 | -$PMF_LANG['ad_user_error_protectedAccount'] = "Korisnički nalog je zaštićen. "; |
|
664 | +$PMF_LANG['ad_user_error_password'] = "Molimo unesite lozinku. "; |
|
665 | +$PMF_LANG['ad_user_error_passwordsDontMatch'] = "Lozinke se ne poklapaju. "; |
|
666 | +$PMF_LANG['ad_user_error_loginInvalid'] = "Unešeno korisničko ime nije nađeno."; |
|
667 | +$PMF_LANG['ad_user_error_noEmail'] = "Unesite važeću email adresu. "; |
|
668 | +$PMF_LANG['ad_user_error_noRealName'] = "Unesite Vaše pravo ime. "; |
|
669 | +$PMF_LANG['ad_user_error_delete'] = "Korisnički nalog ne može biti izbrisan. "; |
|
670 | +$PMF_LANG['ad_user_error_noId'] = "Nije priložen ID. "; |
|
671 | +$PMF_LANG['ad_user_error_protectedAccount'] = "Korisnički nalog je zaštićen. "; |
|
672 | 672 | $PMF_LANG['ad_user_deleteUser'] = "Obriši korisnika"; |
673 | 673 | $PMF_LANG['ad_user_status'] = "Status:"; |
674 | 674 | $PMF_LANG['ad_user_lastModified'] = "zadnji put menjano:"; |