Revision
54
Author
emsmith
Date
2006-12-01 19:09:08 -0800 (Fri, 01 Dec 2006)

Log Message

Typo and bad comment central...

Modified Paths

Diff

Modified: desktop/trunk/lib/actions.class.php (53 => 54)


--- desktop/trunk/lib/actions.class.php	2006-12-02 02:29:50 UTC (rev 53)
+++ desktop/trunk/lib/actions.class.php	2006-12-02 03:09:08 UTC (rev 54)
@@ -57,7 +57,7 @@
 		{
 			throw new Exception(CC_Main::i18n(
 			'%1$s is a singleton class - use %1$s::instance() to retrieve the current object',
-			'CC_Writer'));
+			'CC_Actions'));
 		}
 		self::$singleton = $this;
 

Modified: desktop/trunk/lib/folders.class.php (53 => 54)


--- desktop/trunk/lib/folders.class.php	2006-12-02 02:29:50 UTC (rev 53)
+++ desktop/trunk/lib/folders.class.php	2006-12-02 03:09:08 UTC (rev 54)
@@ -267,7 +267,7 @@
 				{
 					$this->profile = '/Users/' . $_ENV['USER'] . DS;
 				}
-				elseif(sset($_ENV['USER']) &&
+				elseif(isset($_ENV['USER']) &&
 					file_exists('/home/' . $_ENV['USER']))
 				{
 					$this->profile = '/home/' . $_ENV['USER'] . DS;

Modified: desktop/trunk/lib/main.class.php (53 => 54)


--- desktop/trunk/lib/main.class.php	2006-12-02 02:29:50 UTC (rev 53)
+++ desktop/trunk/lib/main.class.php	2006-12-02 03:09:08 UTC (rev 54)
@@ -185,8 +185,9 @@
 	/**
 	 * static public function autoload
 	 *
-	 * overrides php's basic autoload - we use this because you shouldn't have
-	 * a different autoload defined right now
+	 * if you have a program class the same name as a base class the program
+	 * one will always be loaded first (as long as it wasn't previously loaded)
+	 * you can add additional autoloads with your programs via spl_register_autoload
 	 *
 	 * @param string $class class to include
 	 * @return bool

Modified: desktop/trunk/lib/message.class.php (53 => 54)


--- desktop/trunk/lib/message.class.php	2006-12-02 02:29:50 UTC (rev 53)
+++ desktop/trunk/lib/message.class.php	2006-12-02 03:09:08 UTC (rev 54)
@@ -1,6 +1,6 @@
 <?php
 /**
- * message.class.php - Generic Messag Dialogs
+ * message.class.php - Generic Message Dialogs
  *
  * wraps the gtkmessagedialog class and provides pretty gtk dialog box
  * php error/exception handling

Modified: desktop/trunk/lib/toolbar.class.php (53 => 54)


--- desktop/trunk/lib/toolbar.class.php	2006-12-02 02:29:50 UTC (rev 53)
+++ desktop/trunk/lib/toolbar.class.php	2006-12-02 03:09:08 UTC (rev 54)
@@ -171,7 +171,7 @@
 	}
 
 	/**
-	 * public function doPopup
+	 * public function popup
 	 *
 	 * pops up a popup menu on right click
 	 *