Update of /cvsroot/openbash-org/openbash-org/pages
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19978
Modified Files:
add.php
Log Message:
- Falta tener una clase Quote igual que la clase News.
Index: add.php
===================================================================
RCS file: /cvsroot/openbash-org/openbash-org/pages/add.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** add.php 9 Aug 2004 17:13:19 -0000 1.4
--- add.php 23 Oct 2004 10:47:03 -0000 1.5
***************
*** 1,3 ****
--- 1,6 ----
<?php /* vim: set sts=2 ts=8 sw=2 noexpandtab: */ ?>
+ <?php
+ if(!isset($_GET['texto'])) {
+ ?>
<form id="addquote" action="" method="post">
<p><textarea id="texto" class="textarea" cols="60%" rows="10"></textarea></p>
***************
*** 10,11 ****
--- 13,21 ----
<p><?php echo $add['tip'];?></p>
<p><?php echo $add['privacy'];?></p>
+ <?
+ } else {
+ /*
+ * Rellenar cuando se tenga la clase Quote.
+ */
+ }
+ ?>
|