Completed
Pull Request — development (#2329)
by Joshua
09:15
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.class.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.
themes/default/Theme.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -164,6 +164,9 @@
 block discarded – undo
164 164
         }
165 165
     }
166 166
 
167
+    /**
168
+     * @param boolean $do_defered
169
+     */
167 170
     protected function templateJavascriptFiles($do_defered)
168 171
     {
169 172
         global $boardurl, $modSettings;
Please login to merge, or discard this patch.