mose | 2 Jun 2006 08:06
Picon

tiki tiki-setup.php,1.240.2.129,1.240.2.130

Update of /cvsroot/tikiwiki/tiki
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12600

Modified Files:
      Tag: BRANCH-1-9
	tiki-setup.php 
Log Message:
added forgotten vars declaration for tiki-gmap

Index: tiki-setup.php
===================================================================
RCS file: /cvsroot/tikiwiki/tiki/tiki-setup.php,v
retrieving revision 1.240.2.129
retrieving revision 1.240.2.130
diff -u -d -r1.240.2.129 -r1.240.2.130
--- tiki-setup.php	3 May 2006 22:50:16 -0000	1.240.2.129
+++ tiki-setup.php	2 Jun 2006 06:05:57 -0000	1.240.2.130
 <at>  <at>  -1289,6 +1289,8  <at>  <at> 
 $smarty->assign('intertiki_logfile', $intertiki_logfile);
 $intertiki_errfile = '';
 $smarty->assign('intertiki_errfile', $intertiki_errfile);
+$feature_gmap = 'n';
+$smarty->assign('feature_gmap', $feature_gmap);

 //$smarty->assign('tikiIndex', $tikiIndex);
 $smarty->assign('maxArticles', $maxArticles);

-------------------------------------------------------
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
(Continue reading)

mose | 2 Jun 2006 08:09
Picon

tiki/templates/styles/mose tiki.tpl,1.9.2.1,NONE

Update of /cvsroot/tikiwiki/tiki/templates/styles/mose
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv14403/templates/styles/mose

Removed Files:
      Tag: BRANCH-1-9
	tiki.tpl 
Log Message:
enhancing mose.css style

--- tiki.tpl DELETED ---

-------------------------------------------------------
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
toggg | 2 Jun 2006 16:50
Picon

tiki/lib/pear/XML/Tree Node.php,1.1,1.1.6.1

Update of /cvsroot/tikiwiki/tiki/lib/pear/XML/Tree
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv27456/tikiwiki/lib/pear/XML/Tree

Modified Files:
      Tag: BRANCH-1-9
	Node.php 
Log Message:
clone() is now reserved in PHP5 , renamed to cloneNode() as done in PEAR

Index: Node.php
===================================================================
RCS file: /cvsroot/tikiwiki/tiki/lib/pear/XML/Tree/Node.php,v
retrieving revision 1.1
retrieving revision 1.1.6.1
diff -u -d -r1.1 -r1.1.6.1
--- Node.php	10 Jan 2004 12:55:33 -0000	1.1
+++ Node.php	2 Jun 2006 14:50:21 -0000	1.1.6.1
 <at>  <at>  -111,7 +111,7  <at>  <at> 
     *  <at> return object    Reference to the cloned copy.
     *  <at> access public
     */
-    function &clone()
+    function &cloneNode()
     {
         $clone = new XML_Tree_Node($this->name,$this->content,$this->attributes);
toggg | 2 Jun 2006 16:55
Picon

tiki/lib/pear/XML/Tree Node.php,1.1.6.1,1.1.6.2

Update of /cvsroot/tikiwiki/tiki/lib/pear/XML/Tree
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv30743/tikiwiki/lib/pear/XML/Tree

Modified Files:
      Tag: BRANCH-1-9
	Node.php 
Log Message:
cloneNode() where it is used

Index: Node.php
===================================================================
RCS file: /cvsroot/tikiwiki/tiki/lib/pear/XML/Tree/Node.php,v
retrieving revision 1.1.6.1
retrieving revision 1.1.6.2
diff -u -d -r1.1.6.1 -r1.1.6.2
--- Node.php	2 Jun 2006 14:50:21 -0000	1.1.6.1
+++ Node.php	2 Jun 2006 14:55:39 -0000	1.1.6.2
 <at>  <at>  -117,7 +117,7  <at>  <at> 

         $max_child=count($this->children);
         for($i=0;$i<$max_child;$i++) {
-            $clone->children[]=$this->children[$i]->clone();
+            $clone->children[]=$this->children[$i]->cloneNode();
         }

         /* for future use....
toggg | 2 Jun 2006 16:58
Picon

tiki/lib/pear/XML Tree.php,1.1,1.1.6.1

Update of /cvsroot/tikiwiki/tiki/lib/pear/XML
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv31686/tikiwiki/lib/pear/XML

Modified Files:
      Tag: BRANCH-1-9
	Tree.php 
Log Message:
clone() is reserved in PHP5 , cloneNode() instead

Index: Tree.php
===================================================================
RCS file: /cvsroot/tikiwiki/tiki/lib/pear/XML/Tree.php,v
retrieving revision 1.1
retrieving revision 1.1.6.1
diff -u -d -r1.1 -r1.1.6.1
--- Tree.php	10 Jan 2004 12:55:32 -0000	1.1
+++ Tree.php	2 Jun 2006 14:58:48 -0000	1.1.6.1
 <at>  <at>  -330,11 +330,11  <at>  <at> 
     *  <at> return object XML_Tree copy of this node.
     *  <at> access public
     */
-    function clone()
+    function cloneNode()
     {
         $clone = new XML_Tree($this->filename, $this->version);
         if (!is_null($this->root)) {
-            $clone->root = $this->root->clone();
+            $clone->root = $this->root->cloneNode();
         }

(Continue reading)

sylvieg | 2 Jun 2006 17:00
Picon

tiki/lib/trackers trackerlib.php, 1.97.2.84, 1.97.2.85

Update of /cvsroot/tikiwiki/tiki/lib/trackers
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv426/lib/trackers

Modified Files:
      Tag: BRANCH-1-9
	trackerlib.php 
Log Message:
strange code

Index: trackerlib.php
===================================================================
RCS file: /cvsroot/tikiwiki/tiki/lib/trackers/trackerlib.php,v
retrieving revision 1.97.2.84
retrieving revision 1.97.2.85
diff -u -d -r1.97.2.84 -r1.97.2.85
--- trackerlib.php	29 Apr 2006 21:40:50 -0000	1.97.2.84
+++ trackerlib.php	2 Jun 2006 15:00:10 -0000	1.97.2.85
 <at>  <at>  -403,7 +403,7  <at>  <at> 
 				if ($tiki_p_view_trackers_closed != 'y') $status = str_replace('c','',$status);
 				if (!$status) {
 					return (array("cant"=>0, "data"=>''));
-				} elseif (sizeof($status > 1)) {
+				} elseif (strlen($status) > 1) {
 					$sts = preg_split('//', $status, -1, PREG_SPLIT_NO_EMPTY);
 					if (count($sts)) {
 						$mid.= " and (".implode('=? or ',array_fill(0,count($sts),'`status`'))."=?) ";
toggg | 2 Jun 2006 17:20
Picon

tiki/lib/sheet/include/core Object.php, 1.1.2.1, 1.1.2.2

Update of /cvsroot/tikiwiki/tiki/lib/sheet/include/core
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv9024/tikiwiki/lib/sheet/include/core

Modified Files:
      Tag: BRANCH-1-9
	Object.php 
Log Message:
Last clone() ==> cloneNode() for PHP5 parsing enabling

Index: Object.php
===================================================================
RCS file: /cvsroot/tikiwiki/tiki/lib/sheet/include/core/Object.php,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- Object.php	26 Aug 2004 20:19:50 -0000	1.1.2.1
+++ Object.php	2 Jun 2006 15:20:44 -0000	1.1.2.2
 <at>  <at>  -112,7 +112,7  <at>  <at> 
 	 *  <at> access	public
 	 *  <at> return	mixed
 	 */
-	function clone(){	return $this;}
+	function cloneNode(){	return $this;}
 	
 	/**
 	 * Object::hashValue()
toggg | 2 Jun 2006 17:42
Picon

tiki/tests parse_data.php,1.3.16.2,1.3.16.3

Update of /cvsroot/tikiwiki/tiki/tests
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv19912/tikiwiki/tests

Modified Files:
      Tag: BRANCH-1-9
	parse_data.php 
Log Message:
Protect file_get_contents() eventual re-definition

Index: parse_data.php
===================================================================
RCS file: /cvsroot/tikiwiki/tiki/tests/parse_data.php,v
retrieving revision 1.3.16.2
retrieving revision 1.3.16.3
diff -u -d -r1.3.16.2 -r1.3.16.3
--- parse_data.php	10 Oct 2005 17:20:32 -0000	1.3.16.2
+++ parse_data.php	2 Jun 2006 15:42:20 -0000	1.3.16.3
 <at>  <at>  -1,13 +1,14  <at>  <at> 
 <?php
-
-function file_get_contents($file) {
-  $data = '';
-  $fp = fopen($file,'r');
-  while(!feof($fp)) {
-          $data .= fread($fp,4096);
-  }
-  fclose($fp);
-  return $data;
+if (!function_exists('file_get_contents')) {
+    function file_get_contents($file) {
(Continue reading)

toggg | 2 Jun 2006 17:50
Picon

tiki/lib/compat array_fill.func.php, 1.3.4.1, 1.3.4.2

Update of /cvsroot/tikiwiki/tiki/lib/compat
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv23429/tikiwiki/lib/compat

Modified Files:
      Tag: BRANCH-1-9
	array_fill.func.php 
Log Message:
Protect array_fill() eventual re-definition

Index: array_fill.func.php
===================================================================
RCS file: /cvsroot/tikiwiki/tiki/lib/compat/array_fill.func.php,v
retrieving revision 1.3.4.1
retrieving revision 1.3.4.2
diff -u -d -r1.3.4.1 -r1.3.4.2
--- array_fill.func.php	26 Aug 2004 17:38:43 -0000	1.3.4.1
+++ array_fill.func.php	2 Jun 2006 15:50:09 -0000	1.3.4.2
 <at>  <at>  -9,12 +9,14  <at>  <at> 
 // For PHP version < 4.2.0 missing the array_fill function,
 // I provide here an alternative. -Philippe
 // taken from http://de3.php.net/manual/en/function.array-fill.php comments. thanks jausion at hotmail-dot-com
-function array_fill($iStart, $iLen, $vValue) {
-    $aResult = array();
-    for ($iCount = $iStart; $iCount < $iLen + $iStart; $iCount++) {
-        $aResult[$iCount] = $vValue;
+if (!function_exists('array_fill')) {
+    function array_fill($iStart, $iLen, $vValue) {
+        $aResult = array();
+        for ($iCount = $iStart; $iCount < $iLen + $iStart; $iCount++) {
+            $aResult[$iCount] = $vValue;
(Continue reading)

toggg | 2 Jun 2006 18:02
Picon

tiki/lib class_rss_parser.php,1.4.2.2,1.4.2.3

Update of /cvsroot/tikiwiki/tiki/lib
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv27437/tikiwiki/lib

Modified Files:
      Tag: BRANCH-1-9
	class_rss_parser.php 
Log Message:
Throw out property double definition

Index: class_rss_parser.php
===================================================================
RCS file: /cvsroot/tikiwiki/tiki/lib/class_rss_parser.php,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -d -r1.4.2.2 -r1.4.2.3
--- class_rss_parser.php	26 Aug 2004 17:38:30 -0000	1.4.2.2
+++ class_rss_parser.php	2 Jun 2006 16:02:07 -0000	1.4.2.3
 <at>  <at>  -47,7 +47,6  <at>  <at> 
   var $item_properties=Array();
   var $channel_image=Array();
   var $channel_textinput=Array();
-  var $item_properties=Array();

   function get_channel_data() {
     // Return channel properties

Gmane