Completed
Pull Request — development (#2329)
by Joshua
10:12
created
sources/Load.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -1214,6 +1214,9 @@  discard block
 block discarded – undo
1214 1214
 	return $id_theme;
1215 1215
 }
1216 1216
 
1217
+/**
1218
+ * @param integer $id_theme
1219
+ */
1217 1220
 function getThemeData($id_theme, $member)
1218 1221
 {
1219 1222
 	global $modSettings;
@@ -1616,6 +1619,9 @@  discard block
 block discarded – undo
1616 1619
 	$context['user']['smiley_path'] = $modSettings['smileys_url'] . '/' . $context['user']['smiley_set'] . '/';
1617 1620
 }
1618 1621
 
1622
+/**
1623
+ * @param string $detected_url
1624
+ */
1619 1625
 function fixThemeUrls($detected_url)
1620 1626
 {
1621 1627
 	global $boardurl, $scripturl, $settings, $modSettings, $context;
@@ -2500,6 +2506,9 @@  discard block
 block discarded – undo
2500 2506
 	);
2501 2507
 }
2502 2508
 
2509
+/**
2510
+ * @param string $server
2511
+ */
2503 2512
 function serverIs($server)
2504 2513
 {
2505 2514
 	switch ($server)
Please login to merge, or discard this patch.
sources/Templates.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -241,6 +241,9 @@
 block discarded – undo
241 241
             $this->templateNotFound($filename);
242 242
     }
243 243
 
244
+    /**
245
+     * @param string $filename
246
+     */
244 247
     protected function templateNotFound($filename)
245 248
     {
246 249
         global $context, $txt, $scripturl, $modSettings, $boardurl;
Please login to merge, or discard this patch.
sources/Theme.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@
 block discarded – undo
43 43
 
44 44
     protected $rtl;
45 45
 
46
+    /**
47
+     * @param integer $id
48
+     */
46 49
     public function __construct($id)
47 50
     {
48 51
         $this->layers = Template_Layers::getInstance();
Please login to merge, or discard this patch.