Browse Source

Just a few fixes with plugins

vbracco 16 years ago
parent
commit
d3d420eb6e
2 changed files with 4 additions and 4 deletions
  1. 3 3
      classes/configuration.class.php
  2. 1 1
      classes/functions.php

+ 3 - 3
classes/configuration.class.php View File

57
 			$this->check_version = $this->get_option("check_version");
57
 			$this->check_version = $this->get_option("check_version");
58
 			
58
 			
59
 			//TODO: Soporte de los plugins desde BD activar/desactivar
59
 			//TODO: Soporte de los plugins desde BD activar/desactivar
60
-			if ($handle = opendir("plugins")) {				
60
+			if ($handle = opendir(Absolute_Path."plugins")) {				
61
 				while (false !== ($file = readdir($handle))) { 
61
 				while (false !== ($file = readdir($handle))) { 
62
-					if (substr($file, strlen($file)-3, 3) == "php") {
63
-						require_once("plugins/{$file}");
62
+					if (substr($file, strlen($file)-4, 4) == ".php") {
63
+						require_once(Absolute_Path."plugins/{$file}");
64
 						$this->plugins[] = substr($file, 0, strlen($file)-4);						
64
 						$this->plugins[] = substr($file, 0, strlen($file)-4);						
65
 					} 
65
 					} 
66
 				} 
66
 				} 

+ 1 - 1
classes/functions.php View File

654
 			//echo "[".$index."] => ".$plugin."<br />";
654
 			//echo "[".$index."] => ".$plugin."<br />";
655
             if (!file_exists("plugins/".$plugin.".php")) {
655
             if (!file_exists("plugins/".$plugin.".php")) {
656
 				//echo "\tNo existe el archivo<br />";
656
 				//echo "\tNo existe el archivo<br />";
657
-                unset($config->plugins[$index]);
657
+                unset($conf->plugins[$index]);
658
                 continue;
658
                 continue;
659
             }
659
             }
660
 			//echo "\tSi existe el archivo<br />";
660
 			//echo "\tSi existe el archivo<br />";