Procházet zdrojové kódy

Problème comparaison chaîne / entier

Alexandre Alapetite před 12 roky
rodič
revize
3cbcc9f1b3
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 3 3
      app/layout/nav_menu.phtml

+ 3 - 3
app/layout/nav_menu.phtml

@@ -25,7 +25,7 @@
 			switch ($get[0]) {
 				case 'c':
 					foreach ($this->cat_aside as $cat) {
-						if ($cat->id () === $this->get_c) {
+						if ($cat->id () == $this->get_c) {
 							$foundCurrent = true;
 							continue;
 						}
@@ -37,9 +37,9 @@
 					break;
 				case 'f':
 					foreach ($this->cat_aside as $cat) {
-						if ($cat->id () === $this->get_c) {
+						if ($cat->id () == $this->get_c) {
 							foreach ($cat->feeds () as $feed) {
-								if ($feed->id () === $this->get_f) {
+								if ($feed->id () == $this->get_f) {
 									$foundCurrent = true;
 									continue;
 								}