Subversion-Projekte lars-tiefland.ci

Revision

Revision 1324 | Revision 1331 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 1324 Revision 1329
Zeile 20... Zeile 20...
20
	/**
20
	/**
21
	 * User::index()
21
	 * User::index()
22
	 * 
22
	 * 
23
	 * @return
23
	 * @return
24
	 */
24
	 */
25
	public function index()
25
	public function index($anker = '')
26
	{
26
	{
27
		$orders = $this->order->get_list();
27
		$orders = $this->order->get_list();
-
 
28
		$this->smarty->assign('anker', $anker);
28
		$this->smarty->assign('orders', $orders);
29
		$this->smarty->assign('orders', $orders);
29
		$this->smarty->view('orders.tpl');
30
		$this->smarty->view('orders.tpl');
30
	}
31
	}
Zeile 31... Zeile 32...
31
 
32
 
Zeile 281... Zeile 282...
281
			{
282
			{
282
				header("Location: /backend/order/edit/".$Bestellung);
283
				header("Location: /backend/order/edit/".$Bestellung);
283
			}
284
			}
284
			elseif (isset($update["list"]))
285
			elseif (isset($update["list"]))
285
			{
286
			{
286
				header("Location: /backend/order/index#".$Bestellung);
287
				header("Location: /backend/order/index/".$Bestellung);
287
			}
288
			}
288
		}
289
		}
289
	}
290
	}
Zeile 290... Zeile 291...
290
 
291